// ntifs.h
typedef struct {
ULONG Restart;
SID Sid;
} FIND_BY_SID_DATA, *PFIND_BY_SID_DATA;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct {
DWORD Restart;
SID Sid;
} FIND_BY_SID_DATA, *PFIND_BY_SID_DATA;
View the official Win32 API referenceNo description available.
The FIND_BY_SID_DATA structure contains data for the FSCTL_FIND_FILES_BY_SID control code.
RestartIndicates whether to restart the search. This member should be 1 on first call, so the search will start from the root. For subsequent calls, this member should be zero so the search will resume at the point where it stopped.
SidA SID structure that specifies the desired creator owner.
To perform this operation, call FltFsControlFile or ZwFsControlFile.
See FSCTL_FIND_FILES_BY_SID IOCTL (winioctl.h).
Contains data for the FSCTL_FIND_FILES_BY_SID control code.
RestartIndicates whether to restart the search. This member should be 1 on first call, so the search will start from the root. For subsequent calls, this member should be zero so the search will resume at the point where it stopped.
SidA SID structure that specifies the desired creator owner.