My Project
UDK 3.2.7 C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
writer.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 INCLUDED_registry_writer_h
21 #define INCLUDED_registry_writer_h
22 
23 #include "registry/regdllapi.h"
24 #include "registry/types.h"
25 #include "registry/version.h"
26 
27 #include "rtl/ustring.h"
28 #include "sal/types.h"
29 
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 
65 REG_DLLPUBLIC void * SAL_CALL typereg_writer_create(
66  typereg_Version version, rtl_uString const * documentation,
67  rtl_uString const * fileName, RTTypeClass typeClass, sal_Bool published,
68  rtl_uString const * typeName, sal_uInt16 superTypeCount,
69  sal_uInt16 fieldCount, sal_uInt16 methodCount, sal_uInt16 referenceCount)
71 
80 REG_DLLPUBLIC void SAL_CALL typereg_writer_destroy(void * handle) SAL_THROW_EXTERN_C();
81 
98  void * handle, sal_uInt16 index, rtl_uString const * typeName)
100 
128  void * handle, sal_uInt16 index, rtl_uString const * documentation,
129  rtl_uString const * fileName, RTFieldAccess flags, rtl_uString const * name,
130  rtl_uString const * typeName, RTValueType valueType,
131  RTConstValueUnion valueValue)
133 
159  void * handle, sal_uInt16 index, rtl_uString const * documentation,
160  RTMethodMode flags, rtl_uString const * name,
161  rtl_uString const * returnTypeName, sal_uInt16 parameterCount,
162  sal_uInt16 exceptionCount)
164 
188  void * handle, sal_uInt16 methodIndex, sal_uInt16 parameterIndex,
189  RTParamMode flags, rtl_uString const * name, rtl_uString const * typeName)
191 
211  void * handle, sal_uInt16 methodIndex, sal_uInt16 exceptionIndex,
212  rtl_uString const * typeName)
214 
237  void * handle, sal_uInt16 index, rtl_uString const * documentation,
238  RTReferenceType sort, RTFieldAccess flags, rtl_uString const * typeName)
240 
253 REG_DLLPUBLIC void const * SAL_CALL typereg_writer_getBlob(void * handle, sal_uInt32 * size)
255 
256 #ifdef __cplusplus
257 }
258 #endif
259 
260 #endif
261 
262 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */