From bad2936918e060c25bf008b94627c0835ed4314f Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 2 Jun 2024 14:21:13 +0200 Subject: Core/Misc: Fixed windows _UNICODE incompatibilities (cherry picked from commit fd4ffc81b2593dbf5554b553828a736ac6263e98) --- src/server/authserver/Main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/server/authserver/Main.cpp') diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index b254e9c28fe..079f804fe30 100644 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -63,9 +63,10 @@ namespace fs = boost::filesystem; #if TRINITY_PLATFORM == TRINITY_PLATFORM_WINDOWS #include "ServiceWin32.h" -char serviceName[] = "authserver"; -char serviceLongName[] = "TrinityCore auth service"; -char serviceDescription[] = "TrinityCore World of Warcraft emulator auth service"; +#include +TCHAR serviceName[] = _T("authserver"); +TCHAR serviceLongName[] = _T("TrinityCore auth service"); +TCHAR serviceDescription[] = _T("TrinityCore World of Warcraft emulator auth service"); /* * -1 - not in service mode * 0 - stopped -- cgit v1.2.3