FindNextFileName function kernel32
Continues enumerating the hard links to a file using the handle returned by a successful call to the FindFirstFileNameW function.
BOOL FindNextFileNameW(
[in] HANDLE hFindStream,
[in, out] LPDWORD StringLength,
[in, out] PWSTR LinkName
);
Implementation
int FindNextFileName(int hFindStream, Pointer<Uint32> StringLength,
Pointer<Utf16> LinkName) =>
_FindNextFileName(hFindStream, StringLength, LinkName);