Add PGDLLIMPORT to ScanKeywords and NumScanKeywords.

Per buildfarm, this is now needed by contrib/pg_stat_statements.
This commit is contained in:
Tom Lane 2012-03-31 10:56:21 -04:00
parent 194b5ea3d0
commit 5e83854d71

View File

@ -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,