1996-08-27 21:59:28 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* dynamic_loader.h
|
1997-09-07 01:04:48 -04:00
|
|
|
*
|
1996-08-27 21:59:28 -04:00
|
|
|
*
|
|
|
|
|
*
|
2010-01-02 11:58:17 -05:00
|
|
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1996-08-27 21:59:28 -04:00
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/utils/dynamic_loader.h
|
1996-08-27 21:59:28 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef DYNAMIC_LOADER_H
|
|
|
|
|
#define DYNAMIC_LOADER_H
|
|
|
|
|
|
2000-05-28 13:56:29 -04:00
|
|
|
#include "fmgr.h"
|
1996-08-27 21:59:28 -04:00
|
|
|
|
|
|
|
|
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void *pg_dlopen(char *filename);
|
2000-05-28 13:56:29 -04:00
|
|
|
extern PGFunction pg_dlsym(void *handle, char *funcname);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void pg_dlclose(void *handle);
|
|
|
|
|
extern char *pg_dlerror(void);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* DYNAMIC_LOADER_H */
|