blob: 81c1b687b4b1cf120551bb526a9c7fb4c9a4fa1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_DLL_H
#define CR_DLL_H
#if defined(WINDOWS)
#define WIN32_LEAN_AND_MEAN
# ifdef VBOX
# include <iprt/win/windows.h>
# else
#include <windows.h>
# endif
#endif
#include <iprt/cdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
char *name;
#if defined(WINDOWS)
HINSTANCE hinstLib;
#elif defined(IRIX) || defined(IRIX64) || defined(Linux) || defined(FreeBSD) || defined(AIX) || defined(SunOS) || defined(OSF1)
void *hinstLib;
#elif defined(DARWIN)
void *hinstLib; /* void to avoid including the headers */
int type; /* to avoid calling crStrstr all the time */
#else
#error ARCHITECTURE DLL NOT IMPLEMENTED
#endif
} CRDLL;
typedef void (*CRDLLFunc)(void);
DECLEXPORT(CRDLL *) crDLLOpen( const char *dllname, int resolveGlobal );
DECLEXPORT(CRDLLFunc) crDLLGetNoError( CRDLL *dll, const char *symname );
DECLEXPORT(CRDLLFunc) crDLLGet( CRDLL *dll, const char *symname );
DECLEXPORT(void) crDLLClose( CRDLL *dll );
#ifdef __cplusplus
}
#endif
#endif /* CR_DLL_H */
|