BuildTrusteeWithName function
The BuildTrusteeWithName function initializes a TRUSTEE structure. The caller specifies the trustee name. The function sets other members of the structure to default values.
Syntax
VOID WINAPI BuildTrusteeWithName( _Inout_ PTRUSTEE pTrustee, _In_opt_ LPTSTR pName );
Parameters
- pTrustee [in, out]
-
A pointer to a TRUSTEE structure to initialize. The BuildTrusteeWithName function does not allocate any memory. If this parameter is NULL or a pointer that is not valid, the results are undefined.
- pName [in, optional]
-
A pointer to a null-terminated string that contains the name of the trustee for the ptstrName member of the TRUSTEE structure. The BuildTrusteeWithName function sets the other members of the TRUSTEE structure as follows.
Value Meaning - pMultipleTrustee
NULL
- MultipleTrusteeOperation
NO_MULTIPLE_TRUSTEE
- TrusteeForm
TRUSTEE_IS_NAME
- TrusteeType
TRUSTEE_IS_UNKNOWN
Return value
This function does not return a value.
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
|
Unicode and ANSI names |
BuildTrusteeWithNameW (Unicode) and BuildTrusteeWithNameA (ANSI) |
See also
- Access Control Overview
- Basic Access Control Functions
- BuildTrusteeWithObjectsAndSid
- BuildTrusteeWithObjectsAndName
- BuildTrusteeWithSid
- TRUSTEE