Scroll to navigation

RtlInitializeSid(3w) Wine API RtlInitializeSid(3w)

NAME

RtlInitializeSid (NTDLL.@)

SYNOPSIS

BOOL RtlInitializeSid
(
PSID pSid,
PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
BYTE nSubAuthorityCount
)
 

DESCRIPTION

Initialise a SID.
 

PARAMS

pSid [In] SID to initialise.
pIdentifierAuthority [In] Identifier Authority.
nSubAuthorityCount [In] Number of Sub Authorities.
 

RETURNS

Success: TRUE. pSid is initialised with the details given.
Failure: FALSE, if nSubAuthorityCount is >= SID_MAX_SUB_AUTHORITIES.
 

IMPLEMENTATION

Declared in "winternl.h".
Implemented in "dlls/ntdll/sec.c".
Debug channel "ntdll".
Oct 2012 Wine API