2022-09-05 15:13:12 +00:00
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace Memory
|
|
|
|
{
|
|
|
|
uint64_t get_system();
|
|
|
|
uint64_t get_usable();
|
2022-09-29 17:30:42 +00:00
|
|
|
|
|
|
|
bool is_user_address(uintptr_t address);
|
|
|
|
bool is_kernel_address(uintptr_t address);
|
2022-09-05 15:13:12 +00:00
|
|
|
}
|