mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 16:51:18 +00:00
[MKHIVE]
2nd try to fix *nix build svn path=/trunk/; revision=58274
This commit is contained in:
parent
2cd667a6d8
commit
8b7c62e84f
1 changed files with 2 additions and 2 deletions
|
@ -47,9 +47,9 @@
|
|||
#define FLG_ADDREG_TYPE_NONE (0x00020000 | FLG_ADDREG_BINVALUETYPE)
|
||||
#define FLG_ADDREG_TYPE_MASK (0xFFFF0000 | FLG_ADDREG_BINVALUETYPE)
|
||||
|
||||
#ifdef _M_IX86
|
||||
#if defined(_M_IX86) || defined(__i386__)
|
||||
static const WCHAR Architecture[] = {'x','8','6',0};
|
||||
#elif defined(_M_AMD64)
|
||||
#elif defined(_M_AMD64) || defined(__x86_64__)
|
||||
static const WCHAR Architecture[] = {'a','m','d','6','4'0};
|
||||
#elif defined(_M_IA64)
|
||||
static const WCHAR Architecture[] = {'i','a','6','4',0};
|
||||
|
|
Loading…
Reference in a new issue