Bfile FindClose
From WikiPrizm
Jump to navigationJump to search
Contents
Synopsis
Header: fxcg/file.h
Syscall index: 0x1DBA
Function signature: int Bfile_FindClose( int FindHandle );
This function closes a find handle when you are done with it.
Parameters
- int FindHandle - Handle created by Bfile_FindFirst.
Returns
0 on success, or a negative error code on failure.
Comments
Using Bfile functions while user timers are installed can cause SYSTEM ERRORs and other undefined behavior, especially with functions that change data on the file system. Make sure to stop and uninstall all timers before using Bfile functions (and optionally restore them later). See Incompatibility between Bfile Syscalls and Timers for more information.