My Project
UDK 3.2.7 C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
sequence2.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 #ifndef _UNO_SEQUENCE2_H_
20 #define _UNO_SEQUENCE2_H_
21 
22 #include <cppu/cppudllapi.h>
23 #include <uno/data.h>
24 
25 #ifdef __cplusplus
26 extern "C"
27 {
28 #endif
29 
33 
43  uno_Sequence ** ppDest,
44  uno_Sequence * pSource,
45  struct _typelib_TypeDescription * pTypeDescr,
46  uno_ReleaseFunc release )
57  uno_Sequence ** ppDest,
58  uno_Sequence * pSource,
59  struct _typelib_TypeDescriptionReference * pType,
60  uno_ReleaseFunc release )
62 
76  uno_Sequence ** ppSequence,
77  struct _typelib_TypeDescription * pTypeDescr,
78  void * pElements, sal_Int32 len,
79  uno_AcquireFunc acquire )
93  uno_Sequence ** ppSequence,
94  struct _typelib_TypeDescriptionReference * pType,
95  void * pElements, sal_Int32 len,
96  uno_AcquireFunc acquire )
98 
112  uno_Sequence ** ppSequence,
113  struct _typelib_TypeDescription * pTypeDescr,
114  uno_AcquireFunc acquire,
115  uno_ReleaseFunc release )
130  uno_Sequence ** ppSequence,
131  struct _typelib_TypeDescriptionReference * pType,
132  uno_AcquireFunc acquire,
133  uno_ReleaseFunc release )
135 
149  uno_Sequence ** ppSequence,
150  struct _typelib_TypeDescription * pTypeDescr,
151  sal_Int32 nSize,
152  uno_AcquireFunc acquire,
153  uno_ReleaseFunc release )
168  uno_Sequence ** ppSequence,
169  struct _typelib_TypeDescriptionReference * pType,
170  sal_Int32 nSize,
171  uno_AcquireFunc acquire,
172  uno_ReleaseFunc release )
174 
175 #ifdef __cplusplus
176 }
177 #endif
178 
179 #endif
180 
181 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */