File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
src/backend/port/dynloader Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*-------------------------------------------------------------------------
2
+ *
3
+ * dynloader.h--
4
+ * dynamic loader for HP-UX using the shared library mechanism
5
+ *
6
+ * Copyright (c) 1994, Regents of the University of California
7
+ *
8
+ *
9
+ * IDENTIFICATION
10
+ * $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.h,v 1.1 1998/01/26 02:48:36 scrappy Exp $
11
+ *
12
+ * NOTES
13
+ * all functions are defined here -- it's impossible to trace the
14
+ * shl_* routines from the bundled HP-UX debugger.
15
+ *
16
+ *-------------------------------------------------------------------------
17
+ */
18
+ /* System includes */
19
+ void * pg_dlopen (char * filename );
20
+ func_ptr pg_dlsym (void * handle , char * funcname );
21
+ void pg_dlclose (void * handle );
22
+ char * pg_dlerror ();
You can’t perform that action at this time.
0 commit comments