dynloader.h 446 B

12345678910111213141516171819
  1. /*
  2. * src/backend/port/dynloader/win32.h
  3. */
  4. #ifndef PORT_PROTOS_H
  5. #define PORT_PROTOS_H
  6. #include "utils/dynamic_loader.h" /* pgrminclude ignore */
  7. #define pg_dlopen(f) dlopen((f), 1)
  8. #define pg_dlsym dlsym
  9. #define pg_dlclose dlclose
  10. #define pg_dlerror dlerror
  11. char *dlerror(void);
  12. int dlclose(void *handle);
  13. void *dlsym(void *handle, const char *symbol);
  14. void *dlopen(const char *path, int mode);
  15. #endif /* PORT_PROTOS_H */