FIND_BY_SID_OUTPUT structure (winioctl.h)
The FIND_BY_SID_OUTPUT structure represents the fully qualified path name of a file.
Syntax
typedef struct {
DWORD NextEntryOffset;
DWORD FileIndex;
DWORD FileNameLength;
WCHAR FileName[1];
} FIND_BY_SID_OUTPUT, *PFIND_BY_SID_OUTPUT;
Members
NextEntryOffset
Number of bytes that must be skipped to get to the next record. A value of zero indicates that this is the last record.
FileIndex
Index of the file.
FileNameLength
The size of the file name, in bytes. This size does not include the NULL character.
FileName[1]
A null-terminated string that specifies the file name.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Header | winioctl.h (include Windows.h) |