blob: 8e01fc9a437ca2ec7ea84f1d27fd466fb6664b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EXPORT_FUNCTION_H
#define EXPORT_FUNCTION_H
extern void initExortFunction();
extern void addToExportFce(char *name, void *function);
extern void* getExportFce(char *name);
extern void quitExportFunction();
#endif
|