#ifndef _NTIOAPI_H
/**
* The FILE_STANDARD_LINK_INFORMATION structure contains standard information about a file link.
*/
typedef struct _FILE_STANDARD_LINK_INFORMATION
{
ULONG NumberOfAccessibleLinks;
ULONG TotalNumberOfLinks;
BOOLEAN DeletePending;
BOOLEAN Directory;
} FILE_STANDARD_LINK_INFORMATION, *PFILE_STANDARD_LINK_INFORMATION;
View code on GitHub
This structure is documented in Windows Driver Kit.