FindClose function kernel32

int FindClose(
  1. int hFindFile
)

Closes a file search handle opened by the FindFirstFile, FindFirstFileEx, FindFirstFileNameW, FindFirstFileNameTransactedW, FindFirstFileTransacted, FindFirstStreamTransactedW, or FindFirstStreamW functions.

BOOL FindClose(
  HANDLE hFindFile
);

Implementation

int FindClose(int hFindFile) => _FindClose(hFindFile);