mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
12 lines
323 B
ReStructuredText
12 lines
323 B
ReStructuredText
PLUG_CB_LOADDLL
|
|
===============
|
|
Called on DLL loading (in the debug loop), after the DLL has been added to the internal library list, after setting the DLL entry breakpoint:
|
|
|
|
::
|
|
|
|
struct PLUG_CB_LOADDLL
|
|
{
|
|
LOAD_DLL_DEBUG_INFO* LoadDll;
|
|
IMAGEHLP_MODULE64* modInfo;
|
|
const char* modname;
|
|
};
|