NEURON
dll.h
Go to the documentation of this file.
1 #ifdef __cplusplus
2 extern "C" {
3 #endif
4 
5 void dll_init(char *argv0);
6 struct DLL *dll_load(char *filename);
7 struct DLL *dll_force_load(char *filename);
8 void dll_unload(struct DLL *dll);
9 void *dll_lookup(struct DLL *dll, char *symbol);
10 void dll_register(char *symbol, void *address);
11 
12 #ifdef __cplusplus
13 }
14 #endif
15 
struct DLL * dll_load(char *filename)
Definition: dll.cpp:330
void * dll_lookup(struct DLL *dll, char *symbol)
Definition: dll.cpp:733
void dll_unload(struct DLL *dll)
Definition: dll.cpp:700
void dll_init(char *argv0)
Definition: dll.cpp:245
void dll_register(char *symbol, void *address)
Definition: dll.cpp:197
struct DLL * dll_force_load(char *filename)
Definition: dll.cpp:352