mirror of
https://github.com/reactos/reactos.git
synced 2025-07-02 04:31:23 +00:00
[ADVAPI32]
* Update GetTrusteeForm{A,W}(). CORE-8540 svn path=/trunk/; revision=65050
This commit is contained in:
parent
b9febc1490
commit
0593e15998
1 changed files with 26 additions and 19 deletions
|
@ -2038,21 +2038,28 @@ BuildTrusteeWithNameW(PTRUSTEE_W pTrustee,
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* GetTrusteeFormW [ADVAPI32.@]
|
* GetTrusteeFormA [ADVAPI32.@]
|
||||||
*/
|
*/
|
||||||
TRUSTEE_FORM WINAPI
|
TRUSTEE_FORM WINAPI GetTrusteeFormA(PTRUSTEEA pTrustee)
|
||||||
GetTrusteeFormA(PTRUSTEE_A pTrustee)
|
|
||||||
{
|
{
|
||||||
|
TRACE("(%p)\n", pTrustee);
|
||||||
|
|
||||||
|
if (!pTrustee)
|
||||||
|
return TRUSTEE_BAD_FORM;
|
||||||
|
|
||||||
return pTrustee->TrusteeForm;
|
return pTrustee->TrusteeForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* GetTrusteeFormW [ADVAPI32.@]
|
* GetTrusteeFormW [ADVAPI32.@]
|
||||||
*/
|
*/
|
||||||
TRUSTEE_FORM WINAPI
|
TRUSTEE_FORM WINAPI GetTrusteeFormW(PTRUSTEEW pTrustee)
|
||||||
GetTrusteeFormW(PTRUSTEE_W pTrustee)
|
|
||||||
{
|
{
|
||||||
|
TRACE("(%p)\n", pTrustee);
|
||||||
|
|
||||||
|
if (!pTrustee)
|
||||||
|
return TRUSTEE_BAD_FORM;
|
||||||
|
|
||||||
return pTrustee->TrusteeForm;
|
return pTrustee->TrusteeForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue