My Project
UDK 3.2.7 C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
types.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * Copyright 2000, 2010 Oracle and/or its affiliates.
7  *
8  * OpenOffice.org - a multi-platform office productivity suite
9  *
10  * This file is part of OpenOffice.org.
11  *
12  * OpenOffice.org is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU Lesser General Public License version 3
14  * only, as published by the Free Software Foundation.
15  *
16  * OpenOffice.org is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Lesser General Public License version 3 for more details
20  * (a copy is included in the LICENSE file that accompanied this code).
21  *
22  * You should have received a copy of the GNU Lesser General Public License
23  * version 3 along with OpenOffice.org. If not, see
24  * <http://www.openoffice.org/license.html>
25  * for a copy of the LGPLv3 License.
26  *
27  ************************************************************************/
28 
29 #ifndef INCLUDED_registry_types_h
30 #define INCLUDED_registry_types_h
31 
32 #include "sal/types.h"
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
48 
53 
58 
63 
68 
73 
78 
84 
89 
92 
97 
102 
104 
117  RT_TYPE_PUBLISHED = 0x4000
119 };
120 
144 typedef sal_uInt16 RTFieldAccess;
145 
147 #define RT_ACCESS_INVALID 0x0000
148 
149 #define RT_ACCESS_READONLY 0x0001
150 
151 #define RT_ACCESS_OPTIONAL 0x0002
152 
153 #define RT_ACCESS_MAYBEVOID 0x0004
154 
155 #define RT_ACCESS_BOUND 0x0008
156 
157 #define RT_ACCESS_CONSTRAINED 0x0010
158 
159 #define RT_ACCESS_TRANSIENT 0x0020
160 
161 #define RT_ACCESS_MAYBEAMBIGUOUS 0x0040
162 
163 #define RT_ACCESS_MAYBEDEFAULT 0x0080
164 
165 #define RT_ACCESS_REMOVEABLE 0x0100
166 
167 #define RT_ACCESS_ATTRIBUTE 0x0200
168 
169 #define RT_ACCESS_PROPERTY 0x0400
170 
171 #define RT_ACCESS_CONST 0x0800
172 
173 #define RT_ACCESS_READWRITE 0x1000
174 
175 #define RT_ACCESS_DEFAULT 0x2000
176 
186 #define RT_ACCESS_PARAMETERIZED_TYPE 0x4000
187 
196 #define RT_ACCESS_PUBLISHED 0x8000
197 
215 };
216 
222  sal_Int16 aShort;
223  sal_uInt16 aUShort;
224  sal_Int32 aLong;
225  sal_uInt32 aULong;
226  sal_Int64 aHyper;
227  sal_uInt64 aUHyper;
228  float aFloat;
229  double aDouble;
231 };
232 
241 
244 
247 
250 
253 
261 
269 };
270 
279 
282 
285 
288 
300 };
301 
307 
312 
317 
322 
328 
335 };
336 
337 #ifdef __cplusplus
338 }
339 #endif
340 
341 #endif
342 
343 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */