spielwiese
Last change
on this file was
c881d2,
checked in by Hans Schoenemann <hannes@…>, 6 years ago
|
add: recognize windows *dll files
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | #ifndef MOD_RAW_H |
---|
2 | #define MOD_RAW_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* |
---|
7 | * ABSTRACT: machine depend code for dynamic modules |
---|
8 | * |
---|
9 | * Provides: dynl_check_opened() |
---|
10 | * dynl_open() |
---|
11 | * dynl_sym() |
---|
12 | * dynl_error() |
---|
13 | * dunl_close() |
---|
14 | */ |
---|
15 | |
---|
16 | typedef enum { LT_NONE, LT_NOTFOUND, LT_SINGULAR, LT_ELF, LT_HPUX, LT_MACH_O, LT_BUILTIN, LT_DLL} lib_types; |
---|
17 | |
---|
18 | |
---|
19 | #if defined(HAVE_DL) |
---|
20 | #ifdef __cplusplus |
---|
21 | void* dynl_open_binary_warn(const char* binary_name, const char* msg = NULL ); |
---|
22 | void* dynl_sym_warn(void* handle, const char* proc, const char* msg = NULL ); |
---|
23 | #endif |
---|
24 | |
---|
25 | #ifdef __cplusplus |
---|
26 | extern "C" { |
---|
27 | #endif |
---|
28 | int dynl_check_opened(char* filename); |
---|
29 | void * dynl_open(char *filename); |
---|
30 | // if handle == DYNL_KERNEL_HANDLE, then symbol is searched for |
---|
31 | // in kernel of program |
---|
32 | #define DYNL_KERNEL_HANDLE ((void*) 0x1) |
---|
33 | void * dynl_sym(void *handle, const char *symbol); |
---|
34 | int dynl_close (void *handle); |
---|
35 | const char * dynl_error(); |
---|
36 | |
---|
37 | #ifdef __cplusplus |
---|
38 | } |
---|
39 | #endif |
---|
40 | |
---|
41 | #endif /* HAVE_DL */ |
---|
42 | |
---|
43 | |
---|
44 | #endif /* MOD_RAW_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.