#ifndef _NTIOAPI_H
/**
* The FILE_DISPOSITION_INFORMATION structure is used to mark a file for deletion.
* @sa https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntddk/ns-ntddk-_file_disposition_information
*/
typedef struct _FILE_DISPOSITION_INFORMATION
{
BOOLEAN DeleteFile;
} FILE_DISPOSITION_INFORMATION, *PFILE_DISPOSITION_INFORMATION;
View code on GitHub
This structure is documented in Windows Driver Kit.