Retrieves the specified key's value as a fully resolved file path.
#include "ltms.h"
Language | Syntax |
---|---|
C | HRESULT IltmsApplicationProperties_GetResolvedPath(pApplicationProperties, key, value) |
C++ | HRESULT GetResolvedPath(key, value) |
Pointer to an IltmsApplicationProperties Interface interface.
String containing the key of the value to retrieve.
Pointer to a variable that receives a character string containing the specified key's fully resolved path value.
Value | Meaning |
---|---|
S_OK | The function was successful. |
<> S_OK | An error occurred. Refer to the Error Codes or the HRESULT error codes in the DirectShow documentation. |
If the function succeeds, the returned BSTR value must be freed by calling the SysFreeString function.
Win32, x64.
For a C++ example, refer to Set Application Properties Example for C++.