#ifndef _NTIOAPI_H
/**
* The FILE_REPARSE_POINT_INFORMATION structure contains information about a reparse point.
* @sa https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/ns-ntifs-_file_reparse_point_information
*/
typedef struct _FILE_REPARSE_POINT_INFORMATION
{
LONGLONG FileReference;
ULONG Tag;
} FILE_REPARSE_POINT_INFORMATION, *PFILE_REPARSE_POINT_INFORMATION;
View code on GitHub
This structure is documented in Windows Driver Kit.