summaryrefslogtreecommitdiff
path: root/src/common/timer.c
diff options
context:
space:
mode:
authorblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-03 17:55:38 +0000
committerblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-03 17:55:38 +0000
commitc2fa09af6a98d13d3eedf777f93b00ee666dc324 (patch)
tree142734eae99fac3b08589872c87bff3d1882d355 /src/common/timer.c
parent2fae6b0ebfb77c78b76dd48e29ece269127c87ae (diff)
downloadhercules-c2fa09af6a98d13d3eedf777f93b00ee666dc324.tar.gz
hercules-c2fa09af6a98d13d3eedf777f93b00ee666dc324.tar.bz2
hercules-c2fa09af6a98d13d3eedf777f93b00ee666dc324.tar.xz
hercules-c2fa09af6a98d13d3eedf777f93b00ee666dc324.zip
cleaned up windows header usage (added one central file to use windows / winapi specific stuff, to be able to set the appropriate flags before including it correctly)
Note: this may screw up mingw or cygwin building, ill fix it later... git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16219 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/timer.c')
-rw-r--r--src/common/timer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/timer.c b/src/common/timer.c
index 32bc30520..c239a9d70 100644
--- a/src/common/timer.c
+++ b/src/common/timer.c
@@ -14,8 +14,7 @@
#include <time.h>
#ifdef WIN32
-#define WIN32_LEAN_AND_MEAN
-#include <windows.h> // GetTickCount()
+#include "../common/winapi.h" // GetTickCount()
#else
#include <unistd.h>
#include <sys/time.h> // struct timeval, gettimeofday()