mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[CMAKE]
- Sync with trunk head (r50270) - This also reverts r49298. svn path=/branches/cmake-bringup/; revision=50271
This commit is contained in:
commit
6c0c23cb53
482 changed files with 40346 additions and 24711 deletions
|
@ -143,6 +143,19 @@ Author:
|
|||
C_ASSERT(HEAP_CREATE_VALID_MASK == 0x0007F0FF);
|
||||
#endif
|
||||
|
||||
//
|
||||
// Native image architecture
|
||||
//
|
||||
#if defined(_M_IX86)
|
||||
#define IMAGE_FILE_MACHINE_NATIVE IMAGE_FILE_MACHINE_I386
|
||||
#elif defined(_M_ARM)
|
||||
#define IMAGE_FILE_MACHINE_NATIVE IMAGE_FILE_MACHINE_ARM
|
||||
#elif defined(_M_AMD64)
|
||||
#define IMAGE_FILE_MACHINE_NATIVE IMAGE_FILE_MACHINE_AMD64
|
||||
#else
|
||||
#error Define these please!
|
||||
#endif
|
||||
|
||||
//
|
||||
// Registry Keys
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue