2.2.2.16 TS_ALL_PROCESSES_INFO_NT6

The TS_ALL_PROCESSES_INFO_NT6 structure contains data on all the processes on the system that are accessible using the user's credentials.

 typedef struct _TS_ALL_PROCESSES_INFO_NT6 {
     PTS_SYS_PROCESS_INFORMATION_NT6 pTsProcessInfo;
     DWORD   SizeOfSid;
 #ifdef __midl
     [size_is(SizeOfSid)] PBYTE  pSid;
 #else
     PBYTE   pSid;
 #endif
 } TS_ALL_PROCESSES_INFO_NT6, *PTS_ALL_PROCESSES_INFO_NT6;
  

pTsProcessInfo: Pointer to the process information.

SizeOfSid: Size, in bytes, of the security identifier (SID) structure pointed to by pSid.

pSid: Security identifier (SID), as specified in [MS-DTYP] section 2.4.2, of the process.