source: Daodan/MSVC/testserver.c@ 610

Last change on this file since 610 was 567, checked in by gumby, 14 years ago

Daodan MSVC

File size: 306 bytes
Line 
1#include "Flatline.h"
2#include <windows.h>
3
4DWORD WINAPI StartServer(void* lol){
5 FLrServer_Run();
6 return 0;
7}
8
9int main()
10{
11 NetPlatform_Initalize();
12
13 CreateThread(NULL, 0, StartServer, NULL, 0, 0);
14
15 NetPlatform_Shutdown();
16 return 0;
17}
18// 27777 and neighbouring ports are unassigned
Note: See TracBrowser for help on using the repository browser.