mirror of
https://github.com/postgres/postgres.git
synced 2026-04-27 17:16:43 -04:00
Up until now, we've had a policy of only marking certain variables in the PostgreSQL header files with PGDLLIMPORT, but now we've decided to mark them all. This means that extensions running on Windows should no longer operate at a disadvantage as compared to extensions running on Linux: if the variable is present in a header file, it should be accessible. Discussion: http://postgr.es/m/CA+TgmoYanc1_FSfimhgiWSqVyP5KKmh5NP2BWNwDhO8Pg2vGYQ@mail.gmail.com
21 lines
571 B
C
21 lines
571 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* walwriter.h
|
|
* Exports from postmaster/walwriter.c.
|
|
*
|
|
* Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/postmaster/walwriter.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _WALWRITER_H
|
|
#define _WALWRITER_H
|
|
|
|
/* GUC options */
|
|
extern PGDLLIMPORT int WalWriterDelay;
|
|
extern PGDLLIMPORT int WalWriterFlushAfter;
|
|
|
|
extern void WalWriterMain(void) pg_attribute_noreturn();
|
|
|
|
#endif /* _WALWRITER_H */
|