Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/TsudaKageyu/minhook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/hde/hde32.c')
-rw-r--r--src/hde/hde32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hde/hde32.c b/src/hde/hde32.c
index e191f20..08fa25b 100644
--- a/src/hde/hde32.c
+++ b/src/hde/hde32.c
@@ -5,7 +5,7 @@
*
*/
-#ifdef _M_IX86
+#if defined(_M_IX86) || defined(__i386__)
#include "hde32.h"
#include "table32.h"
@@ -323,4 +323,4 @@ unsigned int hde32_disasm(const void *code, hde32s *hs)
return (unsigned int)hs->len;
}
-#endif // _M_IX86
+#endif // defined(_M_IX86) || defined(__i386__)