Revision b6970c98
Added by Hamish Coleman over 16 years ago
- ID b6970c98408bed057cf5e9257d343980158c2c01
wconsd.c | ||
---|---|---|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
*/
|
||
|
||
/* Note: winsock2.h MUST be included before windows.h */
|
||
|
||
#include <winsock2.h>
|
||
#include <windows.h>
|
||
#include <winsvc.h>
|
||
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
|
||
/* There doesn't appear to be any way to register parameters for the
|
||
* service with the service control manager, so I assume I have to compile
|
||
* configuration information in. Ick. */
|
||
... | ... | |
|
||
/* End of user-serviceable parts */
|
||
|
||
/* Note: winsock2.h MUST be included before windows.h */
|
||
|
||
#include <winsock2.h>
|
||
#include <windows.h>
|
||
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
|
||
/* Sockets for listening and communicating */
|
||
SOCKET ls=INVALID_SOCKET,cs=INVALID_SOCKET;
|
||
|
Also available in: Unified diff
Move the include statements around - this version compiles