diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-10 19:34:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-10 19:34:51 +0000 |
commit | 4d4710c1749592ec32b5adec4d2c974ebc5fa4ce (patch) | |
tree | 92000119f1c7d9c72414f1b225ff6d431ba06081 | |
parent | 8dc11afcc55fe32c3042fe41091dae639fd90bc5 (diff) |
mir_core used wrong define
git-svn-id: http://svn.miranda-ng.org/main/trunk@2714 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | include/m_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_core.h b/include/m_core.h index 393767602c..a27b993623 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -144,7 +144,7 @@ typedef INT_PTR (*MIRANDASERVICEPARAM)(WPARAM, LPARAM, LPARAM); typedef INT_PTR (*MIRANDASERVICEOBJ)(void*, LPARAM, LPARAM);
typedef INT_PTR (*MIRANDASERVICEOBJPARAM)(void*, WPARAM, LPARAM, LPARAM);
-#ifdef _WIN64
+#ifdef WIN64
#define CALLSERVICE_NOTFOUND ((INT_PTR)0x8000000000000000)
#else
#define CALLSERVICE_NOTFOUND ((int)0x80000000)
|