dynamic_loader.h 648 B

12345678910111213141516171819202122232425
  1. /*-------------------------------------------------------------------------
  2. *
  3. * dynamic_loader.h
  4. *
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/utils/dynamic_loader.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef DYNAMIC_LOADER_H
  15. #define DYNAMIC_LOADER_H
  16. #include "fmgr.h"
  17. extern void *pg_dlopen(char *filename);
  18. extern PGFunction pg_dlsym(void *handle, char *funcname);
  19. extern void pg_dlclose(void *handle);
  20. extern char *pg_dlerror(void);
  21. #endif /* DYNAMIC_LOADER_H */