FlushFileBuffers function kernel32

int FlushFileBuffers(
  1. int hFile
)

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);