GetLongPathName function kernel32
Converts the specified path to its long form.
DWORD GetLongPathNameW(
[in] LPCWSTR lpszShortPath,
[out] LPWSTR lpszLongPath,
[in] DWORD cchBuffer
);
Implementation
int GetLongPathName(
Pointer<Utf16> lpszShortPath,
Pointer<Utf16> lpszLongPath,
int cchBuffer,
) => _GetLongPathName(lpszShortPath, lpszLongPath, cchBuffer);