server: Implement the open_file method for mailslots.
[wine] / include / winreg.h
1 /*
2  * Win32 registry defines (see also winnt.h)
3  *
4  * Copyright (C) the Wine project
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #ifndef __WINE_WINREG_H
22 #define __WINE_WINREG_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* defined(__cplusplus) */
27
28 #define HKEY_CLASSES_ROOT       ((HKEY) 0x80000000)
29 #define HKEY_CURRENT_USER       ((HKEY) 0x80000001)
30 #define HKEY_LOCAL_MACHINE      ((HKEY) 0x80000002)
31 #define HKEY_USERS              ((HKEY) 0x80000003)
32 #define HKEY_PERFORMANCE_DATA   ((HKEY) 0x80000004)
33 #define HKEY_CURRENT_CONFIG     ((HKEY) 0x80000005)
34 #define HKEY_DYN_DATA           ((HKEY) 0x80000006)
35
36 /*
37  *      registry provider structs
38  */
39 typedef struct value_entA
40 {   LPSTR       ve_valuename;
41     DWORD       ve_valuelen;
42     DWORD_PTR   ve_valueptr;
43     DWORD       ve_type;
44 } VALENTA, *PVALENTA;
45
46 typedef struct value_entW {
47     LPWSTR      ve_valuename;
48     DWORD       ve_valuelen;
49     DWORD_PTR   ve_valueptr;
50     DWORD       ve_type;
51 } VALENTW, *PVALENTW;
52
53 typedef ACCESS_MASK REGSAM;
54
55 /*
56  * InitiateSystemShutdown() reasons
57  */
58 #include <reason.h>
59
60 #define REASON_OTHER            (SHTDN_REASON_MAJOR_OTHER | SHTDN_REASON_MINOR_OTHER)
61 #define REASON_UNKNOWN          SHTDN_REASON_UNKNOWN
62 #define REASON_LEGACY_API       SHTDN_REASON_LEGACY_API
63 #define REASON_PLANNED_FLAG     SHTDN_REASON_FLAG_PLANNED
64
65 #define MAX_SHUTDOWN_TIMEOUT    (10*365*24*60*60)
66
67 /*
68  * RegGetValue() restrictions
69  */
70
71 #define RRF_RT_REG_NONE         (1 << 0)
72 #define RRF_RT_REG_SZ           (1 << 1)
73 #define RRF_RT_REG_EXPAND_SZ    (1 << 2)
74 #define RRF_RT_REG_BINARY       (1 << 3)
75 #define RRF_RT_REG_DWORD        (1 << 4)
76 #define RRF_RT_REG_MULTI_SZ     (1 << 5)
77 #define RRF_RT_REG_QWORD        (1 << 6)
78 #define RRF_RT_DWORD            (RRF_RT_REG_BINARY | RRF_RT_REG_DWORD)
79 #define RRF_RT_QWORD            (RRF_RT_REG_BINARY | RRF_RT_REG_QWORD)
80 #define RRF_NOEXPAND            (1 << 28)
81 #define RRF_ZEROONFAILURE       (1 << 29)
82
83 BOOL        WINAPI AbortSystemShutdownA(LPSTR);
84 BOOL        WINAPI AbortSystemShutdownW(LPWSTR);
85 #define     AbortSystemShutdown WINELIB_NAME_AW(AbortSystemShutdown)
86 BOOL        WINAPI InitiateSystemShutdownA(LPSTR,LPSTR,DWORD,BOOL,BOOL);
87 BOOL        WINAPI InitiateSystemShutdownW(LPWSTR,LPWSTR,DWORD,BOOL,BOOL);
88 #define     InitiateSystemShutdown WINELIB_NAME_AW(InitiateSystemShutdown);
89 BOOL        WINAPI InitiateSystemShutdownExA(LPSTR,LPSTR,DWORD,BOOL,BOOL,DWORD);
90 BOOL        WINAPI InitiateSystemShutdownExW(LPWSTR,LPWSTR,DWORD,BOOL,BOOL,DWORD);
91 #define     InitiateSystemShutdownEx WINELIB_NAME_AW(InitiateSystemShutdownEx);
92 LONG        WINAPI RegCreateKeyExA(HKEY,LPCSTR,DWORD,LPSTR,DWORD,REGSAM,
93                                      LPSECURITY_ATTRIBUTES,PHKEY,LPDWORD);
94 LONG        WINAPI RegCreateKeyExW(HKEY,LPCWSTR,DWORD,LPWSTR,DWORD,REGSAM,
95                                      LPSECURITY_ATTRIBUTES,PHKEY,LPDWORD);
96 #define     RegCreateKeyEx WINELIB_NAME_AW(RegCreateKeyEx)
97 LONG        WINAPI RegDisablePredefinedCache(void);
98 LONG        WINAPI RegSaveKeyA(HKEY,LPCSTR,LPSECURITY_ATTRIBUTES);
99 LONG        WINAPI RegSaveKeyW(HKEY,LPCWSTR,LPSECURITY_ATTRIBUTES);
100 #define     RegSaveKey WINELIB_NAME_AW(RegSaveKey)
101 LONG        WINAPI RegSetKeySecurity(HKEY,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR);
102 LONG        WINAPI RegConnectRegistryA(LPCSTR,HKEY,PHKEY);
103 LONG        WINAPI RegConnectRegistryW(LPCWSTR,HKEY,PHKEY);
104 #define     RegConnectRegistry WINELIB_NAME_AW(RegConnectRegistry)
105 LONG        WINAPI RegEnumKeyExA(HKEY,DWORD,LPSTR,LPDWORD,LPDWORD,LPSTR,
106                                    LPDWORD,LPFILETIME);
107 LONG        WINAPI RegEnumKeyExW(HKEY,DWORD,LPWSTR,LPDWORD,LPDWORD,LPWSTR,
108                                    LPDWORD,LPFILETIME);
109 #define     RegEnumKeyEx WINELIB_NAME_AW(RegEnumKeyEx)
110 LONG        WINAPI RegGetKeySecurity(HKEY,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR,LPDWORD);
111 LONG        WINAPI RegGetValueA(HKEY,LPCSTR,LPCSTR,DWORD,LPDWORD,PVOID,LPDWORD);
112 LONG        WINAPI RegGetValueW(HKEY,LPCWSTR,LPCWSTR,DWORD,LPDWORD,PVOID,LPDWORD);
113 #define     RegGetValue WINELIB_NAME_AW(RegGetValue)
114 LONG        WINAPI RegLoadKeyA(HKEY,LPCSTR,LPCSTR);
115 LONG        WINAPI RegLoadKeyW(HKEY,LPCWSTR,LPCWSTR);
116 #define     RegLoadKey WINELIB_NAME_AW(RegLoadKey)
117 LONG        WINAPI RegLoadMUIStringA(HKEY,LPCSTR,LPSTR,DWORD,LPDWORD,DWORD,LPCSTR);
118 LONG        WINAPI RegLoadMUIStringW(HKEY,LPCWSTR,LPWSTR,DWORD,LPDWORD,DWORD,LPCWSTR);
119 #define     RegLoadMUIString WINELIB_NAME_AW(RegLoadMUIString)
120 LONG        WINAPI RegNotifyChangeKeyValue(HKEY,BOOL,DWORD,HANDLE,BOOL);
121 LONG        WINAPI RegOpenCurrentUser(REGSAM,PHKEY);
122 LONG        WINAPI RegOpenKeyExW(HKEY,LPCWSTR,DWORD,REGSAM,PHKEY);
123 LONG        WINAPI RegOpenKeyExA(HKEY,LPCSTR,DWORD,REGSAM,PHKEY);
124 #define     RegOpenKeyEx WINELIB_NAME_AW(RegOpenKeyEx)
125 LONG        WINAPI RegOpenUserClassesRoot(HANDLE,DWORD,REGSAM,PHKEY);
126 LONG        WINAPI RegQueryInfoKeyW(HKEY,LPWSTR,LPDWORD,LPDWORD,LPDWORD,
127                                       LPDWORD,LPDWORD,LPDWORD,LPDWORD,LPDWORD,
128                                       LPDWORD,LPFILETIME);
129 LONG        WINAPI RegQueryInfoKeyA(HKEY,LPSTR,LPDWORD,LPDWORD,LPDWORD,
130                                       LPDWORD,LPDWORD,LPDWORD,LPDWORD,LPDWORD,
131                                       LPDWORD,LPFILETIME);
132 #define     RegQueryInfoKey WINELIB_NAME_AW(RegQueryInfoKey)
133 LONG        WINAPI RegQueryMultipleValuesA(HKEY,PVALENTA,DWORD,LPSTR,LPDWORD);
134 LONG        WINAPI RegQueryMultipleValuesW(HKEY,PVALENTW,DWORD,LPWSTR,LPDWORD);
135 #define     RegQueryMultipleValues WINELIB_NAME_AW(RegQueryMultipleValues)
136 LONG        WINAPI RegReplaceKeyA(HKEY,LPCSTR,LPCSTR,LPCSTR);
137 LONG        WINAPI RegReplaceKeyW(HKEY,LPCWSTR,LPCWSTR,LPCWSTR);
138 #define     RegReplaceKey WINELIB_NAME_AW(RegReplaceKey)
139 LONG        WINAPI RegRestoreKeyA(HKEY,LPCSTR,DWORD);
140 LONG        WINAPI RegRestoreKeyW(HKEY,LPCWSTR,DWORD);
141 #define     RegRestoreKey WINELIB_NAME_AW(RegRestoreKey)
142 LONG        WINAPI RegUnLoadKeyA(HKEY,LPCSTR);
143 LONG        WINAPI RegUnLoadKeyW(HKEY,LPCWSTR);
144 #define     RegUnLoadKey WINELIB_NAME_AW(RegUnLoadKey)
145
146 /* Declarations for functions that are the same in Win16 and Win32 */
147
148 LONG        WINAPI RegCloseKey(HKEY);
149 LONG        WINAPI RegFlushKey(HKEY);
150
151 LONG        WINAPI RegCreateKeyA(HKEY,LPCSTR,PHKEY);
152 LONG        WINAPI RegCreateKeyW(HKEY,LPCWSTR,PHKEY);
153 #define     RegCreateKey WINELIB_NAME_AW(RegCreateKey)
154 LONG        WINAPI RegDeleteKeyA(HKEY,LPCSTR);
155 LONG        WINAPI RegDeleteKeyW(HKEY,LPCWSTR);
156 #define     RegDeleteKey WINELIB_NAME_AW(RegDeleteKey)
157 LONG        WINAPI RegDeleteValueA(HKEY,LPCSTR);
158 LONG        WINAPI RegDeleteValueW(HKEY,LPCWSTR);
159 #define     RegDeleteValue WINELIB_NAME_AW(RegDeleteValue)
160 LONG        WINAPI RegEnumKeyA(HKEY,DWORD,LPSTR,DWORD);
161 LONG        WINAPI RegEnumKeyW(HKEY,DWORD,LPWSTR,DWORD);
162 #define     RegEnumKey WINELIB_NAME_AW(RegEnumKey)
163 LONG        WINAPI RegEnumValueA(HKEY,DWORD,LPSTR,LPDWORD,LPDWORD,LPDWORD,LPBYTE,LPDWORD);
164 LONG        WINAPI RegEnumValueW(HKEY,DWORD,LPWSTR,LPDWORD,LPDWORD,LPDWORD,LPBYTE,LPDWORD);
165 #define     RegEnumValue WINELIB_NAME_AW(RegEnumValue)
166 LONG        WINAPI RegOpenKeyA(HKEY,LPCSTR,PHKEY);
167 LONG        WINAPI RegOpenKeyW(HKEY,LPCWSTR,PHKEY);
168 #define     RegOpenKey WINELIB_NAME_AW(RegOpenKey)
169 LONG        WINAPI RegQueryValueA(HKEY,LPCSTR,LPSTR,LPLONG);
170 LONG        WINAPI RegQueryValueW(HKEY,LPCWSTR,LPWSTR,LPLONG);
171 #define     RegQueryValue WINELIB_NAME_AW(RegQueryValue)
172 LONG        WINAPI RegQueryValueExA(HKEY,LPCSTR,LPDWORD,LPDWORD,LPBYTE,LPDWORD);
173 LONG        WINAPI RegQueryValueExW(HKEY,LPCWSTR,LPDWORD,LPDWORD,LPBYTE,LPDWORD);
174 #define     RegQueryValueEx WINELIB_NAME_AW(RegQueryValueEx)
175 LONG        WINAPI RegSetValueA(HKEY,LPCSTR,DWORD,LPCSTR,DWORD);
176 LONG        WINAPI RegSetValueW(HKEY,LPCWSTR,DWORD,LPCWSTR,DWORD);
177 #define     RegSetValue WINELIB_NAME_AW(RegSetValue)
178 LONG        WINAPI RegSetValueExA(HKEY,LPCSTR,DWORD,DWORD,CONST BYTE*,DWORD);
179 LONG        WINAPI RegSetValueExW(HKEY,LPCWSTR,DWORD,DWORD,CONST BYTE*,DWORD);
180 #define     RegSetValueEx WINELIB_NAME_AW(RegSetValueEx)
181
182 #ifdef __cplusplus
183 } /* extern "C" */
184 #endif /* defined(__cplusplus) */
185
186 #endif  /* __WINE_WINREG_H */