GetFinalPathNameByHandle function kernel32
Retrieves the final path for the specified file.
DWORD GetFinalPathNameByHandleW(
HANDLE hFile,
LPWSTR lpszFilePath,
DWORD cchFilePath,
DWORD dwFlags
);
Implementation
int GetFinalPathNameByHandle(
int hFile, Pointer<Utf16> lpszFilePath, int cchFilePath, int dwFlags) =>
_GetFinalPathNameByHandle(hFile, lpszFilePath, cchFilePath, dwFlags);