diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/MirFox/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/MirFox/src/lib/MirFoxCommons_pch.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirFox/res/resource.rc b/plugins/MirFox/res/resource.rc index 881a90cca5..8770f0cd85 100644 --- a/plugins/MirFox/res/resource.rc +++ b/plugins/MirFox/res/resource.rc @@ -26,7 +26,7 @@ BEGIN BEGIN
BLOCK "000004b0"
BEGIN
-#ifdef _X64
+#ifdef WIN64
VALUE "FileDescription", __DESCRIPTION " (x64)"
VALUE "ProductName", __PLUGIN_NAME " (x64)"
VALUE "FileVersion", __VERSION_STRING " (x64)"
diff --git a/plugins/MirFox/src/lib/MirFoxCommons_pch.h b/plugins/MirFox/src/lib/MirFoxCommons_pch.h index d8b53974af..f2b22b036a 100644 --- a/plugins/MirFox/src/lib/MirFoxCommons_pch.h +++ b/plugins/MirFox/src/lib/MirFoxCommons_pch.h @@ -25,17 +25,17 @@ #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <stdint.h> //for [u]intNN_t types
-#ifdef _X64 // [
+#ifdef WIN64 // [
# define SCNoPTR L"%I64o"
# define SCNuPTR L"%I64u"
# define SCNxPTR L"%I64x"
# define SCNXPTR L"%I64X"
-#else // _X64 ][
+#else // WIN64 ][
# define SCNoPTR L"%lo"
# define SCNuPTR L"%lu"
# define SCNxPTR L"%lx"
# define SCNXPTR L"%lX"
-#endif // _X64 ]
+#endif // WIN64 ]
#include <windows.h> //for NULL
#include <string> //for std::string, std::wstring, TEXT and _T macros, operator<<
|