BlitzMax Extended  0.8.18
Pushing Blitz to the Max.
blitz_module.h
1 
12 #ifndef BLITZ_MODULE_H
13 #define BLITZ_MODULE_H
14 
15 #include "_common.h"
16 
17 BB_BEGIN_DECLS
18 
19 typedef struct BBModule BBModule;
20 
24 struct BBModule
25 {
28 
30  const char* ident;
31 
33  void (*entry)();
34 };
35 
43 void bbModuleImport(BBModule *mod);
44 
53 void bbModuleRegister(BBModule *mod);
54 
55 BB_END_DECLS
56 
57 #endif // BLITZ_MODULE_H