Remove old non-compliant win32 defines.

This commit is contained in:
KimLS
2019-06-22 16:00:06 -07:00
parent 5d138891d8
commit 4ae0f2a1d7
103 changed files with 192 additions and 306 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
CMAKE_MINIMUM_REQUIRED(VERSION 3.10)
SET(shared_memory_sources
base_data.cpp
+2 -2
View File
@@ -36,7 +36,7 @@
EQEmuLogSys LogSys;
#ifdef _WINDOWS
#ifdef _WIN32
#include <direct.h>
#else
#include <unistd.h>
@@ -45,7 +45,7 @@ EQEmuLogSys LogSys;
inline bool MakeDirectory(const std::string &directory_name)
{
#ifdef _WINDOWS
#ifdef _WIN32
struct _stat st;
if (_stat(directory_name.c_str(), &st) == 0) {
return false;