include: Add DDHAL_UPDATEOVERLAYDATA structure.
[wine/multimedia.git] / include / sddl.h
blob3218323324f855d3a5de3cbf451e865a37e93599
1 /*
2 * Copyright (C) 2003 Ulrich Czekalla for CodeWeavers
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.
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.
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
19 #ifndef __SDDL_H__
20 #define __SDDL_H__
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
28 * SDDL Version information
30 #define SDDL_REVISION_1 1
31 #define SDDL_REVISION SDDL_REVISION_1
34 * SDDL Component tags
36 #define SDDL_OWNER TEXT("O")
37 #define SDDL_GROUP TEXT("G")
38 #define SDDL_DACL TEXT("D")
39 #define SDDL_SACL TEXT("S")
42 * SDDL Separators - character version
44 #define SDDL_SEPERATORC TEXT(";")
45 #define SDDL_DELIMINATORC TEXT(":")
46 #define SDDL_ACE_BEGINC TEXT("(")
47 #define SDDL_ACE_ENDC TEXT(")")
50 * SDDL Separators - string version
52 #define SDDL_SEPERATOR TEXT(";")
53 #define SDDL_DELIMINATOR TEXT(":")
54 #define SDDL_ACE_BEGIN TEXT("(")
55 #define SDDL_ACE_END TEXT(")")
57 BOOL WINAPI ConvertSidToStringSidA( PSID, LPSTR* );
58 BOOL WINAPI ConvertSidToStringSidW( PSID, LPWSTR* );
59 #define ConvertSidToStringSid WINELIB_NAME_AW(ConvertSidToStringSid)
61 BOOL WINAPI ConvertStringSidToSidA( LPCSTR, PSID* );
62 BOOL WINAPI ConvertStringSidToSidW( LPCWSTR, PSID* );
63 #define ConvertStringSidToSid WINELIB_NAME_AW(ConvertStringSidToSid)
65 BOOL WINAPI ConvertStringSecurityDescriptorToSecurityDescriptorA(
66 LPCSTR, DWORD, PSECURITY_DESCRIPTOR*, PULONG );
67 BOOL WINAPI ConvertStringSecurityDescriptorToSecurityDescriptorW(
68 LPCWSTR, DWORD, PSECURITY_DESCRIPTOR*, PULONG );
69 #define ConvertStringSecurityDescriptorToSecurityDescriptor WINELIB_NAME_AW(ConvertStringSecurityDescriptorToSecurityDescriptor)
71 BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorA(
72 PSECURITY_DESCRIPTOR, DWORD, SECURITY_INFORMATION, LPSTR*, PULONG );
73 BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorW(
74 PSECURITY_DESCRIPTOR, DWORD, SECURITY_INFORMATION, LPWSTR*, PULONG );
75 #define ConvertSecurityDescriptorToStringSecurityDescriptor WINELIB_NAME_AW(ConvertSecurityDescriptorToStringSecurityDescriptor)
77 #ifdef __cplusplus
79 #endif
81 #endif /* __SDDL_H__ */