diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/JabberG/src/jabber.cpp | 2 | ||||
-rw-r--r-- | protocols/Xfire/src/tools.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber.cpp b/protocols/JabberG/src/jabber.cpp index 2c76951eb0..e18f261c55 100644 --- a/protocols/JabberG/src/jabber.cpp +++ b/protocols/JabberG/src/jabber.cpp @@ -120,7 +120,7 @@ static int OnModulesLoaded(WPARAM, LPARAM) bSecureIM = (ServiceExists("SecureIM/IsContactSecured"));
bMirOTR = (int)GetModuleHandle(_T("mirotr.dll"));
bNewGPG = (int)GetModuleHandle(_T("new_gpg.dll"));
- #ifdef WIN64
+ #ifdef _WIN64
bPlatform = 1;
#else
bPlatform = 0;
diff --git a/protocols/Xfire/src/tools.cpp b/protocols/Xfire/src/tools.cpp index 77f63ac661..9cfbb44662 100644 --- a/protocols/Xfire/src/tools.cpp +++ b/protocols/Xfire/src/tools.cpp @@ -242,7 +242,7 @@ char* GetLaunchPath(char*launch) //roll bits, vllt ein tickschneller als die funktionen von winsock
unsigned short r(unsigned short data)
{
- #if defined(WIN64)
+ #if defined(_WIN64)
return ((data & 0xFF) << 8) + (data >> 8);
#else
_asm {
|