FindClose

機能
ファイル検索ハンドルをクローズする
Declare Function FindClose Lib "kernel32.dll"  _
(ByVal hFindFile As Long) As Long
Declare Function FindClose Lib "kernel32.dll"  _
(ByVal hFindFile As Integer) As Integer

BOOL FindClose(
HANDLE hFindFile
);
引数
hFindFile

ファイル検索ハンドル
戻り値
正常終了のとき         0以外
エラーのとき              0
備考
FindFirstFile()関数FindNextFile()関数と合わせて使う。