diff options
author | Haru <haru@dotalux.com> | 2015-08-10 03:11:04 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-08-10 03:11:04 +0200 |
commit | 79891f8dbbe2c9f930f4b162316f8401ff05da02 (patch) | |
tree | 167f090c1709ef7ec8e182ee54f51ebd850829fc /src/common/utils.h | |
parent | aa9360cf69c30d26d7333b0c6c952b02b99bcba1 (diff) | |
download | hercules-79891f8dbbe2c9f930f4b162316f8401ff05da02.tar.gz hercules-79891f8dbbe2c9f930f4b162316f8401ff05da02.tar.bz2 hercules-79891f8dbbe2c9f930f4b162316f8401ff05da02.tar.xz hercules-79891f8dbbe2c9f930f4b162316f8401ff05da02.zip |
Fixed a compile error on WIN32/MSVC
- Follow-up to 84e02ac28fbb15c58d0a0f8a916b49663198b05b
- Thanks to KirieZ for pointing it out.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/utils.h')
-rw-r--r-- | src/common/utils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/utils.h b/src/common/utils.h index 0ac818468..e2b0dacc9 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -51,6 +51,12 @@ size_t hread(void * ptr, size_t size, size_t count, FILE * stream); size_t hwrite(const void * ptr, size_t size, size_t count, FILE * stream); #endif // HERCULES_CORE +#ifdef WIN32 +#define HSleep(x) Sleep(1000 * (x)) +#else // ! WIN32 +#define HSleep(x) sleep(x) +#endif + /* [Ind/Hercules] Caching */ struct HCache_interface { void (*init) (void); |