Header And Logo

PostgreSQL
| The world's most advanced open source database.

darwin.h

Go to the documentation of this file.
00001 /* src/backend/port/dynloader/darwin.h */
00002 
00003 #include "fmgr.h"
00004 
00005 void       *pg_dlopen(char *filename);
00006 PGFunction  pg_dlsym(void *handle, char *funcname);
00007 void        pg_dlclose(void *handle);
00008 char       *pg_dlerror(void);