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