.
private static extern bool FlushFileBuffers(IntPtr handle);
.
FlushFileBuffers(_handle);
.
The FlushFileBuffers API
3/16/2007 7:52:33 AM - -68.115.43.6
.
static extern bool FlushFileBuffers(IntPtr hFile);
.
static extern bool FlushFileBuffers(SafeFileHandle hFile);
.
<DllImport("kernel32.dll", SetLastError:=True)> Private Shared Function FlushFileBuffers(ByVal hFile As IntPtr) As Boolean
.