Line data Source code
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 :
10 : #include <sal/config.h>
11 :
12 : #include <cstdlib>
13 :
14 : #include <typelib/typedescription.h>
15 : #include <rtl/ustring.h>
16 : #include <sal/types.h>
17 :
18 : // Stubs for removed functionality, to be killed when we bump sal SONAME
19 :
20 : extern "C" {
21 :
22 0 : SAL_DLLPUBLIC_EXPORT void SAL_CALL typelib_static_array_type_init(
23 : typelib_TypeDescriptionReference **, typelib_TypeDescriptionReference *,
24 : sal_Int32, ...) SAL_THROW_EXTERN_C()
25 : {
26 0 : std::abort();
27 : }
28 :
29 0 : SAL_DLLPUBLIC_EXPORT void SAL_CALL typelib_typedescription_newArray(
30 : typelib_TypeDescription **, typelib_TypeDescriptionReference *,
31 : sal_Int32, sal_Int32 *) SAL_THROW_EXTERN_C()
32 : {
33 0 : std::abort();
34 : }
35 :
36 0 : SAL_DLLPUBLIC_EXPORT void SAL_CALL typelib_typedescription_newUnion(
37 : typelib_TypeDescription **, rtl_uString *,
38 : typelib_TypeDescriptionReference *, sal_Int64,
39 : typelib_TypeDescriptionReference *, sal_Int32, void *)
40 : SAL_THROW_EXTERN_C()
41 : {
42 0 : std::abort();
43 : }
44 :
45 : }
46 :
47 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|