Name
FFlush -- flush all pending writes to file (V6.0)
Synopsis
int ok = FFlush(APTR handle);
Function
This function must flush any pending buffered write operations to the specified file handle and return True on success, False otherwise.

If your file adapter doesn't support writing to files, this function can be a dummy stub.

This function must be implemented in a thread-safe manner.

Inputs
handle
file handle returned by FOpen()
Results
ok
True to indicate success, False on failure

Show TOC