#ifndef _NTIOAPI_H
/**
* The FILE_POSITION_INFORMATION structure is used as an argument to routines that query or set file information.
* \sa https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ns-wdm-_file_position_information
*/
typedef struct _FILE_POSITION_INFORMATION
{
LARGE_INTEGER CurrentByteOffset;
} FILE_POSITION_INFORMATION, *PFILE_POSITION_INFORMATION;
View code on GitHub
This structure is documented in Windows Driver Kit.