// aux_klib.h
PIMAGE_EXPORT_DIRECTORY AuxKlibGetImageExportDirectory(
[in] PVOID ImageBase
);
View the official Windows Driver Kit DDI referenceNo description available.
The AuxKlibGetImageExportDirectory routine returns an image module's export directory.
ImageBase [in]A pointer to the base of an image, which is obtained by calling AuxKlibQueryModuleInformation.
AuxKlibGetImageExportDirectory returns a pointer to an IMAGE_EXPORT_DIRECTORY structure. This structure is defined in Ntimage.h, which is included in the Microsoft Windows Driver Kit (WDK).
Drivers must call AuxKlibInitialize before calling AuxKlibGetImageExportDirectory.