Removed outdated email addresses.
[reactos.git] / reactos / include / reactos / libs / samlib / samlib.h
1 /* $Id$
2 */
3 /*
4 * samlib.h
5 *
6 * Security Account Manager API, native interface
7 *
8 * This file is part of the ReactOS Operating System.
9 *
10 * Contributors:
11 * Created by Eric Kohl
12 *
13 * THIS SOFTWARE IS NOT COPYRIGHTED
14 *
15 * This source code is offered for use in the public domain. You may
16 * use, modify or distribute it freely.
17 *
18 * This code is distributed in the hope that it will be useful but
19 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
20 * DISCLAMED. This includes but is not limited to warranties of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 *
23 */
24
25 #ifndef __SAMLIB_H_INCLUDED__
26 #define __SAMLIB_H_INCLUDED__
27
28
29 BOOL WINAPI
30 SamInitializeSAM (VOID);
31
32 BOOL WINAPI
33 SamGetDomainSid (PSID *Sid);
34
35 BOOL WINAPI
36 SamSetDomainSid (PSID Sid);
37
38 BOOL WINAPI
39 SamCreateUser (PWSTR UserName,
40 PWSTR UserPassword,
41 PSID UserSid);
42
43 BOOL WINAPI
44 SamCheckUserPassword (PWSTR UserName,
45 PWSTR UserPassword);
46
47 BOOL WINAPI
48 SamGetUserSid (PWSTR UserName,
49 PSID *Sid);
50
51 #endif /* __SAMLIB_H_INCLUDED__ */
52
53 /* EOF */