mirror of
https://github.com/rasta-mouse/Crystal-Kit
synced 2026-06-06 16:34:35 +00:00
18 lines
341 B
C
18 lines
341 B
C
typedef struct {
|
|
PVOID BaseAddress;
|
|
SIZE_T Size;
|
|
DWORD CurrentProtect;
|
|
DWORD PreviousProtect;
|
|
} MEMORY_SECTION;
|
|
|
|
typedef struct {
|
|
PVOID BaseAddress;
|
|
SIZE_T Size;
|
|
MEMORY_SECTION Sections [ 20 ];
|
|
} MEMORY_REGION;
|
|
|
|
typedef struct {
|
|
MEMORY_REGION Pico;
|
|
MEMORY_REGION Dll;
|
|
} MEMORY_LAYOUT;
|