My Project
UDK 3.2.7 C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
registry.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 #ifndef _REGISTRY_REGISTRY_H_
21 #define _REGISTRY_REGISTRY_H_
22 
23 #include <stddef.h>
24 #include <rtl/ustring.h>
25 #include <registry/regtype.h>
26 #include <registry/regdllapi.h>
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31 
44  rtl_uString* keyName,
45  RegKeyHandle* phNewKey);
46 
47 
59  rtl_uString* keyName,
60  RegKeyHandle* phOpenKey);
61 
62 
63 
77  rtl_uString* keyName,
78  RegKeyHandle** pphSubKeys,
79  sal_uInt32* pnSubKeys);
80 
81 
90  sal_uInt32 nSubKeys);
91 
92 
102  rtl_uString* keyName);
103 
104 
112 
113 
120 
121 
135  rtl_uString* keyName,
136  RegValueType valueType,
137  RegValue pData,
138  sal_uInt32 valueSize);
139 
140 
151  rtl_uString* keyName,
152  sal_Int32* pValueList,
153  sal_uInt32 len);
154 
155 
166  rtl_uString* keyName,
167  sal_Char** pValueList,
168  sal_uInt32 len);
169 
170 
181  rtl_uString* keyName,
182  sal_Unicode** pValueList,
183  sal_uInt32 len);
184 
185 
198  rtl_uString* keyName,
199  RegValueType* pValueType,
200  sal_uInt32* pValueSize);
201 
202 
214  rtl_uString* keyName,
215  RegValue pData);
216 
217 
228  rtl_uString* keyName,
229  sal_Int32** pValueList,
230  sal_uInt32* pLen);
231 
232 
243  rtl_uString* keyName,
244  sal_Char*** pValueList,
245  sal_uInt32* pLen);
246 
247 
258  rtl_uString* keyName,
259  sal_Unicode*** pValueList,
260  sal_uInt32* pLen);
261 
262 
271  RegValue pValueList,
272  sal_uInt32 len);
273 
285  rtl_uString* keyName,
286  RegKeyType* pKeyType);
287 
299  rtl_uString* keyName,
300  sal_Bool firstLinkOnly,
301  rtl_uString** pResolvedName);
302 
316  rtl_uString* keyName,
317  rtl_uString* regFileName);
318 
319 
333  rtl_uString* keyName,
334  rtl_uString* regFileName);
335 
336 
353  rtl_uString* keyName,
354  rtl_uString* regFileName,
355  sal_Bool bWarnings,
356  sal_Bool bReport);
357 
358 
366  RegHandle* phRegistry);
367 
368 
376  RegKeyHandle* phRootKey);
377 
378 
385 REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_getName(RegHandle hRegistry, rtl_uString** pName);
386 
387 
394 
395 
403 REG_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_openRegistry(rtl_uString* registryName,
404  RegHandle* phRegistry,
405  RegAccessMode accessMode);
406 
407 
414 
415 
424  rtl_uString* registryName);
425 
426 
435 
436 #ifdef __cplusplus
437 }
438 #endif
439 
440 #endif
441 
442 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */