Query in SQL function still not schema-safe; add a couple
[PostgreSQL.git] / src / backend / port / dynloader / win32.h
blob95158b17eac5f8bd409fb96d9267480d3f3439db
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 */