- Timestamp:
- Oct 14, 2024, 4:37:04 PM (5 weeks ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Module/Makefile
r305 r314 19 19 20 20 clean: 21 rm -f *.o *.so *.a *.dll *.tds 21 rm -f *.o *.so *.a *.dll *.tds *.obj -
trunk/Module/mod_proxy.c
r313 r314 6 6 7 7 int MODULE_DECL mod_init(struct tw_config* config, struct tw_tool* tools) { 8 tools->log(" CGI", "Initializing Proxy module");8 tools->log("Proxy", "Initializing Proxy module"); 9 9 tools->add_version("Proxy/1.0"); 10 10 return 0; -
trunk/README.tmpl
r313 r314 45 45 Minix Working 46 46 UnixWare Working on 7.1.1 47 OS/2 Mostly working, module is broken. Help required! 47 OS/2 Working 48 NetWare WIP 48 49 PlayStation Portable Working, missing module support 49 50 TODO: Get multi-threading working (maybe) -
trunk/Server/server.c
r312 r314 629 629 #endif 630 630 for(i = 0; i < config.module_count; i++) { 631 #ifdef __OS2__ 632 tw_mod_request_t mod_req = (tw_mod_request_t)tw_module_symbol(config.modules[i], "MOD_REQUEST"); 633 #else 631 634 tw_mod_request_t mod_req = (tw_mod_request_t)tw_module_symbol(config.modules[i], "mod_request"); 635 #endif 632 636 if(mod_req != NULL) { 633 637 int ret = mod_req(&tools, &req, &res); -
trunk/Server/tw_module.h
r313 r314 15 15 #define INCL_DOSERRORS 16 16 #include <os2.h> 17 #define MODULE_DECL APIENTRY17 #define MODULE_DECL __export APIENTRY 18 18 #else 19 19 #define MODULE_DECL
Note:
See TracChangeset
for help on using the changeset viewer.