From: Tom Lane Date: Sat, 31 Mar 2012 14:56:21 +0000 (-0400) Subject: Add PGDLLIMPORT to ScanKeywords and NumScanKeywords. X-Git-Tag: REL9_2_BETA1~202 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e83854d71bb05403768a97a415a129b0081564b;p=postgresql Add PGDLLIMPORT to ScanKeywords and NumScanKeywords. Per buildfarm, this is now needed by contrib/pg_stat_statements. --- diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h index ebfa05d0f4..2b02ab0dd7 100644 --- a/src/include/parser/keywords.h +++ b/src/include/parser/keywords.h @@ -28,8 +28,8 @@ typedef struct ScanKeyword int16 category; /* see codes above */ } ScanKeyword; -extern const ScanKeyword ScanKeywords[]; -extern const int NumScanKeywords; +extern PGDLLIMPORT const ScanKeyword ScanKeywords[]; +extern PGDLLIMPORT const int NumScanKeywords; extern const ScanKeyword *ScanKeywordLookup(const char *text, const ScanKeyword *keywords,