1 | /*
|
---|
2 | * Copyright (C) 2004 Mike McCormack
|
---|
3 | *
|
---|
4 | * This library is free software; you can redistribute it and/or
|
---|
5 | * modify it under the terms of the GNU Lesser General Public
|
---|
6 | * License as published by the Free Software Foundation; either
|
---|
7 | * version 2.1 of the License, or (at your option) any later version.
|
---|
8 | *
|
---|
9 | * This library is distributed in the hope that it will be useful,
|
---|
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
12 | * Lesser General Public License for more details.
|
---|
13 | *
|
---|
14 | * You should have received a copy of the GNU Lesser General Public
|
---|
15 | * License along with this library; if not, write to the Free Software
|
---|
16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
17 | */
|
---|
18 |
|
---|
19 | /*
|
---|
20 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
21 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
22 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
23 | * a choice of LGPL license versions is made available with the language indicating
|
---|
24 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
25 | * of the LGPL is applied is otherwise unspecified.
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef __SECEXT_H__
|
---|
29 | #define __SECEXT_H__
|
---|
30 |
|
---|
31 | #ifdef __cplusplus
|
---|
32 | extern "C" {
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | typedef enum
|
---|
36 | {
|
---|
37 | NameUnknown = 0,
|
---|
38 | NameFullyQualifiedDN = 1,
|
---|
39 | NameSamCompatible = 2,
|
---|
40 | NameDisplay = 3,
|
---|
41 | NameUniqueId = 6,
|
---|
42 | NameCanonical = 7,
|
---|
43 | NameUserPrincipal = 8,
|
---|
44 | NameCanonicalEx = 9,
|
---|
45 | NameServicePrincipal = 10,
|
---|
46 | NameDnsDomain = 12
|
---|
47 | } EXTENDED_NAME_FORMAT, *PEXTENDED_NAME_FORMAT;
|
---|
48 |
|
---|
49 | BOOLEAN WINAPI GetComputerObjectNameA( EXTENDED_NAME_FORMAT, LPSTR, PULONG );
|
---|
50 | BOOLEAN WINAPI GetComputerObjectNameW( EXTENDED_NAME_FORMAT, LPWSTR, PULONG );
|
---|
51 | #define GetComputerObjectName WINELIB_NAME_AW(GetComputerObjectName)
|
---|
52 |
|
---|
53 | BOOLEAN WINAPI GetUserNameExA( EXTENDED_NAME_FORMAT, LPSTR, PULONG );
|
---|
54 | BOOLEAN WINAPI GetUserNameExW( EXTENDED_NAME_FORMAT, LPWSTR, PULONG );
|
---|
55 | #define GetUserNameEx WINELIB_NAME_AW(GetUserNameEx)
|
---|
56 |
|
---|
57 | BOOLEAN WINAPI TranslateNameA( LPCSTR, EXTENDED_NAME_FORMAT, EXTENDED_NAME_FORMAT, LPSTR, PULONG);
|
---|
58 | BOOLEAN WINAPI TranslateNameW( LPCWSTR, EXTENDED_NAME_FORMAT, EXTENDED_NAME_FORMAT, LPWSTR, PULONG);
|
---|
59 | #define TranslateName WINELIB_NAME_AW(TranslateName)
|
---|
60 |
|
---|
61 | #ifdef __cplusplus
|
---|
62 | }
|
---|
63 | #endif
|
---|
64 |
|
---|
65 | #endif /* __SECEXT_H__ */
|
---|