mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Defined missing virtual memory query/set information types
svn path=/trunk/; revision=3446
This commit is contained in:
parent
fd7d5a399f
commit
cbc3029db7
2 changed files with 34 additions and 11 deletions
|
@ -995,7 +995,40 @@ struct _SYSTEM_SESSION_PROCESSES_INFORMATION
|
|||
|
||||
// memory information
|
||||
|
||||
#define MemoryBasicInformation 0
|
||||
typedef enum _MEMORY_INFORMATION_CLASS {
|
||||
MemoryBasicInformation,
|
||||
MemoryWorkingSetList,
|
||||
MemorySectionName //,
|
||||
//MemoryBasicVlmInformation //???
|
||||
} MEMORY_INFORMATION_CLASS;
|
||||
|
||||
typedef struct _MEMORY_BASIC_INFORMATION { // Information Class 0
|
||||
PVOID BaseAddress;
|
||||
PVOID AllocationBase;
|
||||
ULONG AllocationProtect;
|
||||
ULONG RegionSize;
|
||||
ULONG State;
|
||||
ULONG Protect;
|
||||
ULONG Type;
|
||||
} MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
|
||||
|
||||
typedef struct _MEMORY_WORKING_SET_LIST { // Information Class 1
|
||||
ULONG NumberOfPages;
|
||||
ULONG WorkingSetList[1];
|
||||
} MEMORY_WORKING_SET_LIST, *PMEMORY_WORKING_SET_LIST;
|
||||
|
||||
// Information Class 2
|
||||
#define _MEMORY_SECTION_NAME_STATIC(__bufsize__) \
|
||||
{ \
|
||||
UNICODE_STRING SectionFileName; \
|
||||
WCHAR NameBuffer[(__bufsize__)]; \
|
||||
}
|
||||
|
||||
#define MEMORY_SECTION_NAME_STATIC(__bufsize__) \
|
||||
struct _MEMORY_SECTION_NAME_STATIC((__bufsize__)
|
||||
|
||||
typedef struct _MEMORY_SECTION_NAME_STATIC(ANYSIZE_ARRAY)
|
||||
MEMORY_SECTION_NAME, *PMEMORY_SECTION_NAME;
|
||||
|
||||
// shutdown action
|
||||
|
||||
|
|
|
@ -54,16 +54,6 @@
|
|||
#define SECTION_QUERY (0x1)
|
||||
#define SECTION_ALL_ACCESS (0xf001fL)
|
||||
|
||||
typedef struct _MEMORY_BASIC_INFORMATION {
|
||||
PVOID BaseAddress;
|
||||
PVOID AllocationBase;
|
||||
DWORD AllocationProtect;
|
||||
DWORD RegionSize;
|
||||
DWORD State;
|
||||
DWORD Protect;
|
||||
DWORD Type;
|
||||
} MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
|
||||
|
||||
#define FILE_MAP_ALL_ACCESS (0xf001fL)
|
||||
#define FILE_MAP_READ (4)
|
||||
#define FILE_MAP_WRITE (2)
|
||||
|
|
Loading…
Reference in a new issue