FlushFileBuffers function kernel32
Flushes the buffers of a specified file and causes all buffered data to be written to a file.
BOOL FlushFileBuffers(
HANDLE hFile
);
Implementation
int FlushFileBuffers(int hFile) => _FlushFileBuffers(hFile);