mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:MM] Simplify definitions of MM_SYSLDR_NO_IMPORTS and MM_SYSLDR_BOOT_LOADED.
This commit is contained in:
parent
f6c8155239
commit
a8bcc8d7a1
1 changed files with 2 additions and 7 deletions
|
@ -197,13 +197,8 @@ extern const ULONG MmProtectToValue[32];
|
|||
//
|
||||
// Special values for LoadedImports
|
||||
//
|
||||
#ifdef _WIN64
|
||||
#define MM_SYSLDR_NO_IMPORTS (PVOID)0xFFFFFFFFFFFFFFFEULL
|
||||
#define MM_SYSLDR_BOOT_LOADED (PVOID)0xFFFFFFFFFFFFFFFFULL
|
||||
#else
|
||||
#define MM_SYSLDR_NO_IMPORTS (PVOID)0xFFFFFFFE
|
||||
#define MM_SYSLDR_BOOT_LOADED (PVOID)0xFFFFFFFF
|
||||
#endif
|
||||
#define MM_SYSLDR_NO_IMPORTS ((PVOID)(ULONG_PTR)-2)
|
||||
#define MM_SYSLDR_BOOT_LOADED ((PVOID)(ULONG_PTR)-1)
|
||||
#define MM_SYSLDR_SINGLE_ENTRY 0x1
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue