source: Daodan/MSVC/Flatline_Win32.c@ 580

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

Daodan MSVC

File size: 397 bytes
RevLine 
[567]1#include "Flatline.h"
2
3bool NetPlatform_Initalize()
4{
5 WSADATA wsaData;
6
7 if (WSAStartup(MAKEWORD(2, 2), &wsaData))
8 {
9 DDrConsole_PrintF("WSA initalization failed");
10 return false;
11 }
12 DDrConsole_PrintF("net started using WSA version %d.%d", LOBYTE(wsaData.wVersion), HIBYTE(wsaData.wVersion));
13 return true;
14}
15
16bool NetPlatform_Shutdown()
17{
18 WSACleanup();
19 return true;
20}
Note: See TracBrowser for help on using the repository browser.