Changeset 1697 for trunk/src/emx/include/dlfcn.h
- Timestamp:
- Dec 3, 2004, 8:00:05 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/dlfcn.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1696 r1697 24 24 #define _DLFCN_H_ 25 25 26 #include <sys/cdefs.h> 26 27 27 /******************************************************************************* 28 * Defined Constants And Macros * 29 *******************************************************************************/ 28 30 29 /** @name dlopen flags 31 30 * @{ */ … … 44 43 /** @} */ 45 44 46 #ifdef __cplusplus 47 extern "C" { 48 #endif 45 __BEGIN_DECLS 49 46 50 47 void * dlopen(const char * pszLibrary, int flFlags); … … 53 50 int dlclose(void *pvHandle); 54 51 55 #ifdef __cplusplus 56 } 52 #if __BSD_VISIBLE 53 struct __dlfunc_arg 54 { 55 int __dlfunc_dummy; 56 }; 57 typedef void (*dlfunc_t)(struct __dlfunc_arg); 58 dlfunc_t dlfunc(void * __restrict, const char * __restrict); 57 59 #endif 60 61 __END_DECLS 58 62 59 63 #endif -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.