Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IMAGE_INFO_EX structure (ntddk.h)

IMAGE_INFO_EX is the larger, extended version of the IMAGE_INFO load image information structure.

Syntax

typedef struct _IMAGE_INFO_EX {
 SIZE_T Size;
 IMAGE_INFO ImageInfo;
 struct _FILE_OBJECT *FileObject;
} IMAGE_INFO_EX, *PIMAGE_INFO_EX;

Members

Size

Specifies the size, in bytes, of the IMAGE_INFO_EX structure.

ImageInfo

An IMAGE_INFO structure that specifies load image information.

FileObject

Pointer to the file object of the backing file for the image. The driver can take a reference to this object or use it for other operations.

Remarks

If the ExtendedInfoPresent flag is set in the IMAGE_INFO structure, the load image information is part of IMAGE_INFO_EX. In this case, the load-image notify routine can use the CONTAINING_RECORD macro (in miniport.h) to obtain the base address of the IMAGE_INFO_EX structure.

Requirements

Requirement Value
Header ntddk.h (include Ntddk.h)

See also

IMAGE_INFO

PLOAD_IMAGE_NOTIFY_ROUTINE

PsSetLoadImageNotifyRoutine


Feedback

Was this page helpful?

Additional resources