-
Notifications
You must be signed in to change notification settings - Fork 3
API: MdGetImageFilename
Archie_UwU edited this page Sep 19, 2024
·
1 revision
Retrieves the filename of a given module's DLL file.
AurieStatus MdGetImageFilename(
[in] AurieModule* Module,
[out] std::wstring& Filename
);
A pointer to the module object of the given module.
A reference to a wide-string, the value of which will be overwritten with the filename of the module.
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.