]> Nishi Git Mirror - tewi.git/commitdiff
some fix
authorNishi <nishi@nishi.boats>
Thu, 17 Oct 2024 04:22:49 +0000 (04:22 +0000)
committerNishi <nishi@nishi.boats>
Thu, 17 Oct 2024 04:22:49 +0000 (04:22 +0000)
git-svn-id: file:///raid/svn-personal/tewi/trunk@367 8739d7e6-ffea-ec47-b151-bdff447c6205

Module/mod_cgi.c
Module/mod_example.c
Module/mod_proxy.c
Server/tw_module.h

index e3003077e70945fab8fe320109a70245b8e88bd7..79d77218fdd8ebf8e340d9237065a8223fb1639e 100644 (file)
@@ -22,6 +22,4 @@ int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req,
        return TW_MODULE_STOP;
 }
 
-#ifdef __NETWARE__
-int main() { return 0; }
-#endif
+END_MODULE
index 7b7ce0f14c976f408ec466e3d110b753cceae2a8..4ff659f609116dd8b60908bd7ffc26d47ce140ed 100644 (file)
@@ -13,6 +13,4 @@ int MODULE_DECL mod_config(struct tw_tool* tools, char** argv, int argc) { retur
 
 int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) { return TW_MODULE_ERROR(403); }
 
-#ifdef __NETWARE__
-int main() { return 0; }
-#endif
+END_MODULE
index ac276b0a485e6376613f1e7665df6839500cbb9e..4326937a720af5b26ca9eb67ceec5a5ea44bc2fe 100644 (file)
@@ -14,6 +14,4 @@ int MODULE_DECL mod_config(struct tw_tool* tools, char** argv, int argc) { retur
 
 int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) { return TW_MODULE_PASS; }
 
-#ifdef __NETWARE__
-int main() { return 0; }
-#endif
+END_MODULE
index 346d48c0607f28e33f107913842e9736fd03a929..b8bd9090e39a0ba81c0f5fc1816da7fbe87aca64 100644 (file)
@@ -10,6 +10,13 @@ extern "C" {
 #include "tw_config.h"
 #include "tw_http.h"
 
+#ifdef __NETWARE__
+#include <nwconio.h>
+#define END_MODULE int main(){DestroyScreen(GetCurrentScreen());while(1);return 0;}
+#else
+#define END_MODULE
+#endif
+
 #if defined(__OS2__)
 #define INCL_DOSMODULEMGR
 #define INCL_DOSERRORS