Last change
on this file since 98321 was 95312, checked in by vboxsync, 3 years ago |
libs/{curl,libxml2}: OSE export fixes, bugref:8515
|
-
Property svn:eol-style
set to
native
|
File size:
678 bytes
|
Line | |
---|
1 | /**
|
---|
2 | *** dlopen(), dlclose() dlsym(), dlerror() emulation for OS/400.
|
---|
3 | ***
|
---|
4 | *** See Copyright for the status of this software.
|
---|
5 | ***
|
---|
6 | *** Author: Patrick Monnerat <[email protected]>, DATASPHERE S.A.
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #ifndef _DLFCN_H_
|
---|
10 | #define _DLFCN_H_
|
---|
11 |
|
---|
12 |
|
---|
13 | /**
|
---|
14 | *** Flags for dlopen().
|
---|
15 | *** Ignored for OS400.
|
---|
16 | **/
|
---|
17 |
|
---|
18 | #define RTLD_LAZY 000
|
---|
19 | #define RTLD_NOW 001
|
---|
20 | #define RTLD_GLOBAL 010
|
---|
21 |
|
---|
22 |
|
---|
23 | /**
|
---|
24 | *** Prototypes.
|
---|
25 | **/
|
---|
26 |
|
---|
27 | extern void * dlopen(const char * filename, int flag);
|
---|
28 | extern void * dlsym(void * handle, const char * symbol);
|
---|
29 | extern const char * dlerror(void);
|
---|
30 | extern int dlclose(void * handle);
|
---|
31 |
|
---|
32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.