mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[LSASRV]
Rename sids.c to lookup.c because the new name fits much better. svn path=/trunk/; revision=57585
This commit is contained in:
parent
76963aa8b7
commit
0ffc17d4a2
3 changed files with 28 additions and 28 deletions
|
@ -13,11 +13,11 @@ spec2def(lsasrv.dll lsasrv.spec ADD_IMPORTLIB)
|
|||
list(APPEND SOURCE
|
||||
authport.c
|
||||
database.c
|
||||
lookup.c
|
||||
lsarpc.c
|
||||
lsasrv.c
|
||||
policy.c
|
||||
privileges.c
|
||||
sids.c
|
||||
lsasrv.rc
|
||||
${CMAKE_CURRENT_BINARY_DIR}/lsasrv_stubs.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/lsasrv.def
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: Local Security Authority (LSA) Server
|
||||
* FILE: reactos/dll/win32/lsasrv/sids.c
|
||||
* FILE: reactos/dll/win32/lsasrv/lookup.c
|
||||
* PURPOSE: Sid / Name lookup functions
|
||||
*
|
||||
* PROGRAMMERS: Eric Kohl
|
|
@ -118,6 +118,32 @@ LsapSetObjectAttribute(PLSA_DB_OBJECT DbObject,
|
|||
LPVOID AttributeData,
|
||||
ULONG AttributeSize);
|
||||
|
||||
/* lookup.c */
|
||||
NTSTATUS
|
||||
LsapInitSids(VOID);
|
||||
|
||||
ULONG
|
||||
LsapGetRelativeIdFromSid(PSID Sid);
|
||||
|
||||
NTSTATUS
|
||||
LsapLookupNames(DWORD Count,
|
||||
PRPC_UNICODE_STRING Names,
|
||||
PLSAPR_REFERENCED_DOMAIN_LIST *ReferencedDomains,
|
||||
PLSAPR_TRANSLATED_SIDS_EX2 TranslatedSids,
|
||||
LSAP_LOOKUP_LEVEL LookupLevel,
|
||||
DWORD *MappedCount,
|
||||
DWORD LookupOptions,
|
||||
DWORD ClientRevision);
|
||||
|
||||
NTSTATUS
|
||||
LsapLookupSids(PLSAPR_SID_ENUM_BUFFER SidEnumBuffer,
|
||||
PLSAPR_REFERENCED_DOMAIN_LIST *ReferencedDomains,
|
||||
PLSAPR_TRANSLATED_NAMES_EX TranslatedNames,
|
||||
LSAP_LOOKUP_LEVEL LookupLevel,
|
||||
DWORD *MappedCount,
|
||||
DWORD LookupOptions,
|
||||
DWORD ClientRevision);
|
||||
|
||||
/* lsarpc.c */
|
||||
VOID
|
||||
LsarStartRpcServer(VOID);
|
||||
|
@ -201,30 +227,4 @@ LsarpEnumeratePrivileges(DWORD *EnumerationContext,
|
|||
PLSAPR_PRIVILEGE_ENUM_BUFFER EnumerationBuffer,
|
||||
DWORD PreferedMaximumLength);
|
||||
|
||||
/* sids.h */
|
||||
NTSTATUS
|
||||
LsapInitSids(VOID);
|
||||
|
||||
ULONG
|
||||
LsapGetRelativeIdFromSid(PSID Sid);
|
||||
|
||||
NTSTATUS
|
||||
LsapLookupNames(DWORD Count,
|
||||
PRPC_UNICODE_STRING Names,
|
||||
PLSAPR_REFERENCED_DOMAIN_LIST *ReferencedDomains,
|
||||
PLSAPR_TRANSLATED_SIDS_EX2 TranslatedSids,
|
||||
LSAP_LOOKUP_LEVEL LookupLevel,
|
||||
DWORD *MappedCount,
|
||||
DWORD LookupOptions,
|
||||
DWORD ClientRevision);
|
||||
|
||||
NTSTATUS
|
||||
LsapLookupSids(PLSAPR_SID_ENUM_BUFFER SidEnumBuffer,
|
||||
PLSAPR_REFERENCED_DOMAIN_LIST *ReferencedDomains,
|
||||
PLSAPR_TRANSLATED_NAMES_EX TranslatedNames,
|
||||
LSAP_LOOKUP_LEVEL LookupLevel,
|
||||
DWORD *MappedCount,
|
||||
DWORD LookupOptions,
|
||||
DWORD ClientRevision);
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue