update dev300-m58
[ooovba.git] / cppu / test / mapping_tester / Mapping.tester.hxx
blobfbc45cba88f988898a7afbdb9362e84f537a501a
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: Mapping.tester.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef INCLUDED_Mapping_tester_hxx
32 #define INCLUDED_Mapping_tester_hxx
35 #include "../ObjectFactory/callee.hxx"
38 #ifdef CPPU_TEST_MAPPING_TESTER_TESTS_IMPL
39 # define CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT SAL_DLLPUBLIC_EXPORT
41 #elif defined(CPPU_TEST_MAPPING_TESTER_TESTS_LIB)
42 # define CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT extern
44 #elif defined(__GNUC__) && defined(HAVE_GCC_VISIBILITY_FEATURE)
45 # define CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT extern __attribute__ ((weak))
47 #elif defined(__SUNPRO_CC)
48 # define CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT extern
49 extern rtl::OUString g_from_envDcp;
50 extern rtl::OUString g_to_envDcp;
51 extern rtl::OUString g_ref;
52 extern rtl::OUString g_custom;
53 extern rtl::OUString g_result;
54 extern int g_check;
55 # pragma weak g_from_envDcp
56 # pragma weak g_to_envDcp
57 # pragma weak g_ref
58 # pragma weak g_custom
59 # pragma weak g_result
60 # pragma weak g_check
62 #else
63 # define CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT SAL_DLLPUBLIC_IMPORT
65 #endif
67 CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT rtl::OUString g_from_envDcp;
68 CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT rtl::OUString g_to_envDcp;
69 CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT rtl::OUString g_ref;
70 CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT rtl::OUString g_custom;
71 CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT rtl::OUString g_result;
72 CPPU_TEST_MAPPING_TESTER_TESTS_EXPORT int g_check;
75 #define D_CALLEE extern "C" void CALLEE(rtl_uString * pMethod_name)
78 #endif