| |
| |
| @@ -36,6 +36,7 @@ |
| static const char* |
| IsWow64(void) |
| { |
| +#ifndef __midipix__ |
| #ifdef __x86_64__ |
| return " (64-bit)"; |
| #else |
| @@ -51,6 +52,13 @@ |
| /* OS doesn't support IsWow64Process() */ |
| return ""; |
| #endif |
| +#else |
| +#ifdef __NT64 |
| + return " (64-bit)"; |
| +#else |
| + return " (32-bit)"; |
| +#endif |
| +#endif |
| } |
| |
| /* |