show/hide this revision's text 2 added 542 characters in body

I think what you're looking for is the Win32 CreateFile API, with these flags:

FILE_FLAG_WRITE_THROUGH : Write operations will not go through any intermediate cache, they will go directly to disk.

FILE_FLAG_NO_BUFFERING : The file or device is being opened with no system caching for data reads and writes. This flag does not affect hard disk caching or memory mapped files. There are strict requirements for successfully working with files opened with CreateFile using the FILE_FLAG_NO_BUFFERING flag, for details see File Buffering.

show/hide this revision's text 1

I think what you're looking for is CreateFile API, with the FILE_FLAG_NO_BUFFERING flag.