diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-08-20 01:05:57 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-08-20 01:05:57 -0300 |
commit | 38338e90c05e60fbea63ab4b68f14b82406e51ef (patch) | |
tree | 2ccab9afee128ad7e642d6fffaa3305a64aad50f /modules/enet/win32.c | |
parent | 2fa693273c4eca763a0d65385e1a44bd46dd715c (diff) |
ENet windows compilation fixes.
For reference, when you include a Windows header (be it directly windows.h or something that includes it)
put it at the end of the includes. it seems I forgot.
Diffstat (limited to 'modules/enet/win32.c')
-rw-r--r-- | modules/enet/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/enet/win32.c b/modules/enet/win32.c index 5cc167997c..d77fa9a49a 100644 --- a/modules/enet/win32.c +++ b/modules/enet/win32.c @@ -4,7 +4,7 @@ */ #ifdef _WIN32 -#define ENET_BUILDING_LIB 1 +#define ENET_BUILDING_LIB 0 #include "enet/enet.h" #include <windows.h> #include <mmsystem.h> |