#ifndef _NTDBG_H
/**
* The DBGKM_LOAD_DLL structure contains information about a loaded DLL.
*/
typedef struct _DBGKM_LOAD_DLL
{
HANDLE FileHandle;
PVOID BaseOfDll;
ULONG DebugInfoFileOffset;
ULONG DebugInfoSize;
PVOID NamePointer;
} DBGKM_LOAD_DLL, *PDBGKM_LOAD_DLL;
View code on GitHubNo description available.