source: Daodan/src/Flatline_Win32.c@ 625

Last change on this file since 625 was 484, checked in by gumby, 15 years ago

ZOMG FLATLINE

File size: 397 bytes
RevLine 
[484]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.