Commit 9bdd0857 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll/tests: Add some tests for NtQueryVirtualMemory(MemoryImageInformation).

parent 3d383c46
......@@ -2127,6 +2127,23 @@ typedef struct _MEMORY_REGION_INFORMATION
ULONG_PTR NodePreference;
} MEMORY_REGION_INFORMATION, *PMEMORY_REGION_INFORMATION;
typedef struct _MEMORY_IMAGE_INFORMATION
{
PVOID ImageBase;
SIZE_T SizeOfImage;
union
{
ULONG ImageFlags;
struct
{
ULONG ImagePartialMap : 1;
ULONG ImageNotExecutable : 1;
ULONG ImageSigningLevel : 4;
ULONG Reserved : 26;
};
};
} MEMORY_IMAGE_INFORMATION, *PMEMORY_IMAGE_INFORMATION;
typedef enum _MUTANT_INFORMATION_CLASS
{
MutantBasicInformation
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment