diff options
author | Lee Salzman <[email protected]> | 2014-05-28 21:16:14 +0300 |
---|---|---|
committer | Lee Salzman <[email protected]> | 2014-05-28 21:16:14 +0300 |
commit | 99004c45ac9a8c1802b49270a1437a418414435f (patch) | |
tree | dd1bf2bfc9b3a78f8b564278e41827a0e884205a | |
parent | 736474ca839a8ae35399b052912d86c515f1f5c3 (diff) | |
download | enet-99004c45ac9a8c1802b49270a1437a418414435f.tar.gz enet-99004c45ac9a8c1802b49270a1437a418414435f.zip |
include mmsystem.h for timeGetTime
-rw-r--r-- | win32.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,9 +4,10 @@ */ #ifdef _WIN32 -#include <time.h> #define ENET_BUILDING_LIB 1 #include "enet/enet.h" +#include <windows.h> +#include <mmsystem.h> static enet_uint32 timeBase = 0; |