Skip to content

API: MdGetImageFilename

Archie_UwU edited this page Sep 19, 2024 · 1 revision

Retrieves the filename of a given module's DLL file.

Syntax

AurieStatus MdGetImageFilename(
    [in]  AurieModule*  Module,
    [out] std::wstring& Filename
);

Parameters

Module

A pointer to the module object of the given module.

Filename

A reference to a wide-string, the value of which will be overwritten with the filename of the module.

Return Value

The function returns AURIE_SUCCESS on success, otherwise returns a matching error code. If the module has no filename, AURIE_INVALID_PARAMETER will be returned.