Differences From Artifact [6cf76cd731]:
- File src/winhttp.c — part of check-in [cff9cc34f0] at 2012-06-06 20:27:12 on branch winsrv — Fixed command line processing for the "winsrv" command. Corrected a typo in the documentation of the "winsrv create" command. Report error messages in the native language if english is not available. (user: tsbg size: 31045) [more...]
To Artifact [be2ff0b78d]:
- File src/winhttp.c — part of check-in [8bde948434] at 2012-08-22 14:53:14 on branch eclipse-project — Allow popen.c and winhttp.c to be compiled with -DUNICODE -D_UNICODE (the latter just by undefining those) (user: jan.nijtmans size: 31076)
| ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | + + | ** ******************************************************************************* ** ** This file implements a very simple (and low-performance) HTTP server ** for windows. It also implements a Windows Service which allows the HTTP ** server to be run without any user logged on. */ #undef UNICODE #undef _UNICODE #include "config.h" #ifdef _WIN32 /* This code is for win32 only */ #include <windows.h> #include "winhttp.h" /* |
| ︙ |