Changeset 140 in Main for trunk/Server/tw_module.h
- Timestamp:
- Sep 23, 2024, 8:31:18 PM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/tw_module.h
r39 r140 3 3 #ifndef __TW_MODULE_H__ 4 4 #define __TW_MODULE_H__ 5 6 #ifdef __cplusplus 7 extern "C" { 8 #endif 5 9 6 10 #include "tw_config.h" … … 34 38 typedef int (*tw_mod_config_t)(struct tw_tool* tools, char** argv, int argc); 35 39 40 #ifdef SOURCE 36 41 void* tw_module_load(const char* path); 37 42 void* tw_module_symbol(void* mod, const char* sym); 38 43 void tw_init_tools(struct tw_tool* tools); 39 44 int tw_module_init(void* mod); 45 #endif 46 47 #ifdef __cplusplus 48 } 49 #endif 40 50 41 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.