FIND_BY_SID_OUTPUT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntifs.h

typedef struct {
  ULONG NextEntryOffset;
  ULONG FileIndex;
  ULONG FileNameLength;
  WCHAR FileName[1];
} FIND_BY_SID_OUTPUT, *PFIND_BY_SID_OUTPUT;
View the official Windows Driver Kit DDI reference
// winioctl.h

typedef struct {
  DWORD NextEntryOffset;
  DWORD FileIndex;
  DWORD FileNameLength;
  WCHAR FileName[1];
} FIND_BY_SID_OUTPUT, *PFIND_BY_SID_OUTPUT;
View the official Win32 API reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntifs-find_by_sid_output)

Description

The FIND_BY_SID_OUTPUT structure represents the fully qualified path name of a file found by the FSCTL_FIND_FILES_BY_SID control code.

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.

Remarks

See also

FSCTL_FIND_FILES_BY_SID


Win32 API reference (ns-winioctl-find_by_sid_output)

FIND_BY_SID_OUTPUT structure

Description

The FIND_BY_SID_OUTPUT structure represents the fully qualified path name of a file.

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

A null-terminated string that specifies the file name.

See also

FSCTL_FIND_FILES_BY_SID