mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 09:27:04 +08:00
are now separate files "postgres.h" and "postgres_fe.h", which are meant to be the primary include files for backend .c files and frontend .c files respectively. By default, only include files meant for frontend use are installed into the installation include directory. There is a new make target 'make install-all-headers' that adds the whole content of the src/include tree to the installed fileset, for use by people who want to develop server-side code without keeping the complete source tree on hand. Cleaned up a whole lot of crufty and inconsistent header inclusions.
26 lines
671 B
C
26 lines
671 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* dynamic_loader.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: dynamic_loader.h,v 1.17 2001/02/10 02:31:29 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DYNAMIC_LOADER_H
|
|
#define DYNAMIC_LOADER_H
|
|
|
|
#include "fmgr.h"
|
|
|
|
|
|
extern void *pg_dlopen(char *filename);
|
|
extern PGFunction pg_dlsym(void *handle, char *funcname);
|
|
extern void pg_dlclose(void *handle);
|
|
extern char *pg_dlerror(void);
|
|
|
|
#endif /* DYNAMIC_LOADER_H */
|