// aux_klib.h
typedef struct _AUX_MODULE_EXTENDED_INFO {
AUX_MODULE_BASIC_INFO BasicInfo;
ULONG ImageSize;
USHORT FileNameOffset;
UCHAR FullPathName[AUX_KLIB_MODULE_PATH_LEN];
} AUX_MODULE_EXTENDED_INFO, *PAUX_MODULE_EXTENDED_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The AUX_MODULE_EXTENDED_INFO structure contains extended information about a loaded image module.
BasicInfoAn AUX_MODULE_BASIC_INFO structure.
ImageSizeThe size, in bytes, of the loaded image.
FileNameOffsetThe offset, in bytes, from the beginning of the full path name to the file name of the module's image file.
FullPathNameThe full path name of the module's image file.
The AUX_MODULE_EXTENDED_INFO structure is used as input to the AuxKlibQueryModuleInformation routine.