mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-29 09:51:30 +00:00
24 lines
279 B
C
24 lines
279 B
C
#pragma once
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
|
|
#include <Windows.h>
|
|
|
|
#ifdef GetCurrentTime
|
|
#undef GetCurrentTime
|
|
#endif
|
|
|
|
#ifdef GetClassName
|
|
#undef GetClassName
|
|
#endif
|
|
|
|
#endif // _WINDOWS
|