]> granicus.if.org Git - postgresql/blob - src/backend/port/dynloader/beos.h
9cc374303420da30ef0a3d773da12921e48426c8
[postgresql] / src / backend / port / dynloader / beos.h
1 /*-------------------------------------------------------------------------
2  *
3  * port_protos.h
4  *        port-specific prototypes for BeOS
5  *
6  *
7  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: beos.h,v 1.2 2000/10/03 03:11:15 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef PORT_PROTOS_H
15 #define PORT_PROTOS_H
16
17 #include "postgres.h"
18
19 #include "fmgr.h"
20 #include "utils/dynamic_loader.h"
21
22 char       *beos_dlerror(void);
23 void       *beos_dlopen(const char *filename);
24 void       *beos_dlsym(void *handle, const char *name);
25 void            beos_dlclose(void *handle);
26
27 #define            pg_dlopen(f)    beos_dlopen(f)
28 #define            pg_dlsym                beos_dlsym
29 #define            pg_dlclose      beos_dlclose
30 #define            pg_dlerror      beos_dlerror
31
32
33 #endif   /* PORT_PROTOS_H */