1 /*-------------------------------------------------------------------------
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
14 #ifndef DYNAMIC_LOADER_H
15 #define DYNAMIC_LOADER_H
20 extern void *pg_dlopen(char *filename
);
21 extern PGFunction
pg_dlsym(void *handle
, char *funcname
);
22 extern void pg_dlclose(void *handle
);
23 extern char *pg_dlerror(void);
25 #endif /* DYNAMIC_LOADER_H */