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

Function GetModuleBaseFromAddress

ReClass/stdafx.cpp:319–327  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

317}
318
319ULONG_PTR GetModuleBaseFromAddress( ULONG_PTR Address )
320{
321 for (size_t i = 0; i < g_MemMapModules.size( ); i++)
322 {
323 if ((Address >= g_MemMapModules[i].Start) && (Address <= g_MemMapModules[i].End))
324 return g_MemMapModules[i].Start;
325 }
326 return 0;
327}
328
329CString GetAddressName( ULONG_PTR Address, BOOLEAN bJustAddress )
330{

Callers 2

ResolveRTTIMethod · 0.85
AddCommentMethod · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected