mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Core/Misc: Fixed windows _UNICODE incompatibilities
This commit is contained in:
@@ -81,9 +81,10 @@ namespace fs = boost::filesystem;
|
||||
|
||||
#ifdef _WIN32
|
||||
#include "ServiceWin32.h"
|
||||
char serviceName[] = "worldserver";
|
||||
char serviceLongName[] = "TrinityCore world service";
|
||||
char serviceDescription[] = "TrinityCore World of Warcraft emulator world service";
|
||||
#include <tchar.h>
|
||||
TCHAR serviceName[] = _T("worldserver");
|
||||
TCHAR serviceLongName[] = _T("TrinityCore world service");
|
||||
TCHAR serviceDescription[] = _T("TrinityCore World of Warcraft emulator world service");
|
||||
/*
|
||||
* -1 - not in service mode
|
||||
* 0 - stopped
|
||||
|
||||
Reference in New Issue
Block a user