Utility Functions
Memory and Module Utilities
is_valid(std::uintptr_t addr)
std::uintptr_t addr = 0x1000;
if (Styx::is_valid(addr)) {
std::cout << "Address is valid" << std::endl;
}init_ranges()
if (Styx::init_ranges()) {
std::cout << "Physical memory ranges initialized" << std::endl;
}get_file_header(void* base_addr)
Last updated
