Group: Shell Lightweight Utility APIs -- Path Functions - Library: shlwapi
Converting path to original case
BOOL PathSearchAndQualify(
__in LPCTSTR pcszPath,
__out LPTSTR pszFullyQualifiedPath,
__in UINT cchFullyQualifiedPath
);
DECLARE INTEGER PathSearchAndQualify IN Shlwapi;
STRING pcszPath,;
STRING @pszFullyQualifiedPath,;
INTEGER cchFullyQualifiedPath
pcszPath [in] A pointer to a null-terminated string of maximum length MAX_PATH that contains the path to search.
pszFullyQualifiedPath [out] A pointer to a null-terminated string of length MAX_PATH that contains the path to be referenced.
cchFullyQualifiedPath [in] The size of the buffer pointed to by pszFullyQualifiedPath, in characters.
Returns TRUE if the path is qualified, or FALSE otherwise.