[17] | 1 | /* $Id: tw_module.h 369 2024-10-17 04:28:13Z nishi $ */
|
---|
| 2 |
|
---|
| 3 | #ifndef __TW_MODULE_H__
|
---|
| 4 | #define __TW_MODULE_H__
|
---|
| 5 |
|
---|
[140] | 6 | #ifdef __cplusplus
|
---|
| 7 | extern "C" {
|
---|
| 8 | #endif
|
---|
| 9 |
|
---|
[17] | 10 | #include "tw_config.h"
|
---|
[18] | 11 | #include "tw_http.h"
|
---|
[17] | 12 |
|
---|
[367] | 13 | #ifdef __NETWARE__
|
---|
| 14 | #include <nwconio.h>
|
---|
[368] | 15 | #include <nwthread.h>
|
---|
| 16 | #include <stddef.h>
|
---|
| 17 | #define END_MODULE void _thread(void* arg){ \
|
---|
[369] | 18 | SuspendThread(GetThreadID()); \
|
---|
[368] | 19 | } \
|
---|
| 20 | int main(){ \
|
---|
| 21 | DestroyScreen(GetCurrentScreen()); \
|
---|
| 22 | BeginThread(_thread, NULL, 0, NULL); \
|
---|
| 23 | ThreadSwitch(); \
|
---|
| 24 | return 0; \
|
---|
| 25 | }
|
---|
[367] | 26 | #else
|
---|
| 27 | #define END_MODULE
|
---|
| 28 | #endif
|
---|
| 29 |
|
---|
[313] | 30 | #if defined(__OS2__)
|
---|
| 31 | #define INCL_DOSMODULEMGR
|
---|
| 32 | #define INCL_DOSERRORS
|
---|
| 33 | #include <os2.h>
|
---|
[314] | 34 | #define MODULE_DECL __export APIENTRY
|
---|
[315] | 35 | #elif defined(__WATCOMC__)
|
---|
| 36 | #define MODULE_DECL __export
|
---|
[313] | 37 | #else
|
---|
| 38 | #define MODULE_DECL
|
---|
| 39 | #endif
|
---|
| 40 |
|
---|
[17] | 41 | struct tw_tool {
|
---|
| 42 | void (*log)(const char* name, const char* log, ...);
|
---|
[18] | 43 | void (*add_version)(const char* string);
|
---|
[156] | 44 | void (*add_define)(const char* string);
|
---|
| 45 | void (*delete_define)(const char* string);
|
---|
[17] | 46 | };
|
---|
| 47 |
|
---|
[18] | 48 | enum TW_MODULE_RETURN {
|
---|
[20] | 49 | _TW_MODULE_PASS = 0, /* Pass to the next module. */
|
---|
| 50 | _TW_MODULE_STOP, /* Do not pass to the next module. */
|
---|
[141] | 51 | _TW_MODULE_STOP2, /* Do not pass to the next module, and do not handle response. */
|
---|
[39] | 52 | _TW_MODULE_ERROR, /* Error, and do not pass to the next module. */
|
---|
| 53 |
|
---|
| 54 | _TW_CONFIG_PARSED, /* Got parsed */
|
---|
| 55 | _TW_CONFIG_NOTME, /* Did not parse */
|
---|
| 56 | _TW_CONFIG_ERROR /* Error */
|
---|
[18] | 57 | };
|
---|
| 58 |
|
---|
[20] | 59 | #define TW_MODULE_PASS _TW_MODULE_PASS
|
---|
| 60 | #define TW_MODULE_STOP _TW_MODULE_STOP
|
---|
[141] | 61 | #define TW_MODULE_STOP2 _TW_MODULE_STOP2
|
---|
[20] | 62 | #define TW_MODULE_ERROR(x) (_TW_MODULE_ERROR | ((x) << 8))
|
---|
| 63 |
|
---|
[39] | 64 | #define TW_CONFIG_PARSED _TW_CONFIG_PARSED
|
---|
| 65 | #define TW_CONFIG_NOTME _TW_CONFIG_NOTME
|
---|
| 66 | #define TW_CONFIG_ERROR _TW_CONFIG_ERROR
|
---|
| 67 |
|
---|
[315] | 68 | typedef int(MODULE_DECL* tw_mod_init_t)(struct tw_config* config, struct tw_tool* tools);
|
---|
| 69 | typedef int(MODULE_DECL* tw_mod_request_t)(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res);
|
---|
| 70 | typedef int(MODULE_DECL* tw_mod_config_t)(struct tw_tool* tools, char** argv, int argc);
|
---|
[17] | 71 |
|
---|
[140] | 72 | #ifdef SOURCE
|
---|
[17] | 73 | void* tw_module_load(const char* path);
|
---|
| 74 | void* tw_module_symbol(void* mod, const char* sym);
|
---|
| 75 | void tw_init_tools(struct tw_tool* tools);
|
---|
| 76 | int tw_module_init(void* mod);
|
---|
[156] | 77 |
|
---|
| 78 | void tw_add_version(const char* string);
|
---|
| 79 | void tw_add_define(const char* string);
|
---|
| 80 | void tw_delete_define(const char* string);
|
---|
[140] | 81 | #endif
|
---|
[17] | 82 |
|
---|
[140] | 83 | #ifdef __cplusplus
|
---|
| 84 | }
|
---|
[17] | 85 | #endif
|
---|
[140] | 86 |
|
---|
| 87 | #endif
|
---|