#include <nitro/fs.h>
void FS_CancelFile( FSFile *p_file );
p_file |
Address of the FSFile structure |
None.
Requests cancellation of the specified file (if it's currently running the asynchronous process). The function returns control without allowing the process to complete. To accept cancellation or wait for the completion of the process, use the FS_WaitAsync
function. When the specified file is held in the archive as an unprocessed command, the cancellation is accepted as soon as the current command completes. When the specified file in the archive is an executable command, it depends whether or not the archive is implemented.
FSFile
, FS_WaitAsync
, FS_IsBusy
07/13/2004 Initial version.