MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / IsMemory

Function IsMemory

ReClass/stdafx.cpp:299–307  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297}
298
299BOOLEAN IsMemory( ULONG_PTR Address )
300{
301 for (size_t i = 0; i < g_MemMap.size( ); i++)
302 {
303 if ((Address >= g_MemMap[i].Start) && (Address <= g_MemMap[i].End))
304 return true;
305 }
306 return false;
307}
308
309BOOLEAN IsModule( ULONG_PTR Address )
310{

Callers 1

DrawMethod · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected