<Return[F]><Top>

FindVolumeClose

Declare Function Api_FindVolumeClose& Lib "kernel32" Alias "FindVolumeClose" (ByVal hFindVolume&)

Declare Function FindVolumeClose Lib "kernel32" (ByVal hFindVolume As Long) As Long

指定したボリューム検索ハンドルを閉じる。FindFirstVolume 関数および FindNextVolume 関数はこの検索ハンドルを使ってボリュームを探す。

パラメータ
hFindVolume
    閉じるボリューム検索ハンドルを指定する。このハンドルは FindFirstVolume 関数であらかじめ開かれていなければならない。

戻り値
    関数が成功すると、0 以外の値が返る。
    関数が失敗すると、0 が返る。拡張エラー情報を取得するには、GetLastError 関数を使う。

解説
    FindVolumeClose 関数を呼び出した後に、hFindVolume ハンドルを FindNextVolume 関数または FindVolumeClose 関数で使うことは

    できない。