FILE_WRITE_THROUGH - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTIOAPI_H

/**
 * Applications that write data to the file must actually transfer the data into the file before any
 * requested write operation is considered complete.
 * This flag is automatically set if the CreateOptions flag FILE_NO_INTERMEDIATE_BUFFERING is set.
 */
#define FILE_WRITE_THROUGH                  0x00000002

#endif

View code on GitHub

NtDoc

No description available.