AUX_MODULE_EXTENDED_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-aux_klib-_aux_module_extended_info)

_AUX_MODULE_EXTENDED_INFO structure

Description

The AUX_MODULE_EXTENDED_INFO structure contains extended information about a loaded image module.

Members

BasicInfo

An AUX_MODULE_BASIC_INFO structure.

ImageSize

The size, in bytes, of the loaded image.

FileNameOffset

The offset, in bytes, from the beginning of the full path name to the file name of the module's image file.

FullPathName

The full path name of the module's image file.

Remarks

The AUX_MODULE_EXTENDED_INFO structure is used as input to the AuxKlibQueryModuleInformation routine.

See also

AuxKlibQueryModuleInformation