// wdm.h
typedef struct _LINK_SHARE_ACCESS {
ULONG OpenCount;
ULONG Deleters;
ULONG SharedDelete;
} LINK_SHARE_ACCESS, *PLINK_SHARE_ACCESS;
View the official Windows Driver Kit DDI referenceNo description available.
The share access structure used by file systems for only link files.
OpenCountThe number of open requests to the file.
DeletersFile associated with the file object has been opened for delete access.
SharedDeleteFile associated with the file object has been opened for delete sharing access.