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

Function IsModule

ReClass/stdafx.cpp:309–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307}
308
309BOOLEAN IsModule( ULONG_PTR Address )
310{
311 for (size_t i = 0; i < g_MemMapModules.size( ); i++)
312 {
313 if (Address >= g_MemMapModules[i].Start && Address <= g_MemMapModules[i].End)
314 return true;
315 }
316 return false;
317}
318
319ULONG_PTR GetModuleBaseFromAddress( ULONG_PTR Address )
320{

Callers 1

UpdateMemoryMapFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected