ファイル検索ハンドルをクローズする
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()関数と合わせて使う。