mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
LookupAccountSidA and W stubs added (FAR needs them). Hope it is the right place for them.
svn path=/trunk/; revision=8630
This commit is contained in:
parent
c9c497dc9f
commit
2b24e33ce7
1 changed files with 33 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: sid.c,v 1.10 2004/02/25 14:25:11 ekohl Exp $
|
||||
/* $Id: sid.c,v 1.11 2004/03/10 21:34:42 fireball Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -6,6 +6,7 @@
|
|||
* PURPOSE: Security ID functions
|
||||
*/
|
||||
|
||||
#include <debug.h>
|
||||
#define NTOS_MODE_USER
|
||||
#include <ntos.h>
|
||||
#include <windows.h>
|
||||
|
@ -237,4 +238,35 @@ IsValidSid(PSID pSid)
|
|||
return((BOOL)RtlValidSid(pSid));
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* LookupAccountSidA [ADVAPI32.@]
|
||||
*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
LookupAccountSidA(LPCSTR lpSystemName, PSID lpSid, LPSTR lpName,
|
||||
LPDWORD cchName, LPSTR lpReferencedDomainName,
|
||||
LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse)
|
||||
|
||||
|
||||
{
|
||||
DPRINT1("LookupAccountSidA is unimplemented, but returns success\n");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* LookupAccountSidW [ADVAPI32.@]
|
||||
*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
LookupAccountSidW(LPCWSTR lpSystemName, PSID lpSid, LPWSTR lpName,
|
||||
LPDWORD cchName, LPWSTR lpReferencedDomainName,
|
||||
LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse)
|
||||
{
|
||||
DPRINT1("LookupAccountSidW is unimplemented, but returns success\n");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue