From 2b24e33ce7b745cfe97dd8a0c3ddac63cd023d7c Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Wed, 10 Mar 2004 21:34:42 +0000 Subject: [PATCH] LookupAccountSidA and W stubs added (FAR needs them). Hope it is the right place for them. svn path=/trunk/; revision=8630 --- reactos/lib/advapi32/sec/sid.c | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/reactos/lib/advapi32/sec/sid.c b/reactos/lib/advapi32/sec/sid.c index 12353c848c4..652d66379c1 100644 --- a/reactos/lib/advapi32/sec/sid.c +++ b/reactos/lib/advapi32/sec/sid.c @@ -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 #define NTOS_MODE_USER #include #include @@ -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 */