diff options
author | blacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-03 17:55:38 +0000 |
---|---|---|
committer | blacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-03 17:55:38 +0000 |
commit | c2fa09af6a98d13d3eedf777f93b00ee666dc324 (patch) | |
tree | 142734eae99fac3b08589872c87bff3d1882d355 /src/common/utils.c | |
parent | 2fae6b0ebfb77c78b76dd48e29ece269127c87ae (diff) | |
download | hercules-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/utils.c')
-rw-r--r-- | src/common/utils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/utils.c b/src/common/utils.c index 08ac8db15..296df7e70 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -15,8 +15,7 @@ #include <math.h> // floor() #ifdef WIN32 - #include <io.h> - #include <windows.h> + #include "../common/winapi.h" #ifndef F_OK #define F_OK 0x0 #endif /* F_OK */ |