#include <nitro/fs.h>
BOOL FS_CloseFile( FSFile *p_file );
p_file |
Address of the FSFile structure |
If it correctly closes the file, it returns a value of TRUE. Otherwise it returns a value of FALSE.
This function closes an open file.
This function cannot be called from the interrupt handler (IRQ mode).
Also note that in some cases processing may not end if interrupts are left prohibited.
09/24/2004 Added the description in the Caution section regarding the conditions for calling this function.
04/01/2004 Initial version