Force a checkpoint in CREATE DATABASE before starting to copy the files,
[PostgreSQL.git] / src / backend / port / dynloader / win32.h
blob437764e704f698a3556c0a5b14b49d234a102975
1 /*
2 * $PostgreSQL:$
3 */
4 #ifndef PORT_PROTOS_H
5 #define PORT_PROTOS_H
7 #include "utils/dynamic_loader.h"
9 #define pg_dlopen(f) dlopen((f), 1)
10 #define pg_dlsym dlsym
11 #define pg_dlclose dlclose
12 #define pg_dlerror dlerror
14 char *dlerror(void);
15 int dlclose(void *handle);
16 void *dlsym(void *handle, const char *symbol);
17 void *dlopen(const char *path, int mode);
19 #endif /* PORT_PROTOS_H */