This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/hooks/misc/nt_query_virtual_memory.cpp
2022-12-15 12:38:03 +01:00

11 lines
276 B
C++

#include "hooking.hpp"
namespace big
{
int hooks::nt_query_virtual_memory(void* _this, HANDLE handle, PVOID base_addr, int info_class, MEMORY_BASIC_INFORMATION* info, int size, size_t* return_len)
{
LOG(INFO) << "Reached here, base addr: " << base_addr;
return 1;
}
}