AuxKlibGetImageExportDirectory function (aux_klib.h)

The AuxKlibGetImageExportDirectory routine returns an image module's export directory.

Syntax

PIMAGE_EXPORT_DIRECTORY AuxKlibGetImageExportDirectory(
  [in] PVOID ImageBase
);

Parameters

[in] ImageBase

A pointer to the base of an image, which is obtained by calling AuxKlibQueryModuleInformation.

Return value

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).

Remarks

Drivers must call AuxKlibInitialize before calling AuxKlibGetImageExportDirectory.

Requirements

Requirement Value
Minimum supported client Supported starting with Windows 2000.
Target Platform Universal
Header aux_klib.h (include Aux_klib.h)
Library Aux_Klib.lib

See also

AuxKlibQueryModuleInformation