FileFlush: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: bool fileFlush ( file ) Flushes a file so that waiting disk writings are written immediately. Things written by fileWrite is often delayed until a certain buffer is full or the file is cl...)
(No difference)

Revision as of 01:22, 23 November 2007

bool fileFlush ( file )

Flushes a file so that waiting disk writings are written immediately. Things written by fileWrite is often delayed until a certain buffer is full or the file is closed until they're actually written to the disk. Call this if you need the data written right now without closing the file.