#ifndef _NTIOAPI_H
/**
* The FILE_ACCESS_INFORMATION structure is used to query for or set the access rights of a file.
* \sa https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/ns-ntifs-_file_access_information
*/
typedef struct _FILE_ACCESS_INFORMATION
{
ACCESS_MASK AccessFlags;
} FILE_ACCESS_INFORMATION, *PFILE_ACCESS_INFORMATION;
View code on GitHub
This structure is documented in Windows Driver Kit.