1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #include <cstddef>
25 #include <rtl/string.hxx>
26 #include <typeinfo>
27 
28 typedef struct _uno_Any uno_Any;
29 typedef struct _uno_Mapping uno_Mapping;
30 
31 // private C50 structures and functions
32 namespace __Crun
33 {
34 	struct static_type_info
35 	{
36         std::ptrdiff_t m_pClassName;
37 		int			m_nSkip1; // must be 0
38 		void*		m_pMagic; // points to some magic data
39 		int			m_nMagic[ 4 ];
40 		int			m_nSkip2[2]; // must be 0
41 	};
42 	void* ex_alloc(unsigned);
43 	void ex_throw( void*, const static_type_info*, void(*)(void*));
44 	void* ex_get();
45 	void ex_rethrow_q();
46 }
47 
48 namespace __Cimpl
49 {
50 	const char* ex_name();
51 }
52 
53 extern "C" void _ex_register( void*, int );
54 
55 namespace CPPU_CURRENT_NAMESPACE
56 {
57 
58 //##################################################################################################
59 //#### exceptions ##################################################################################
60 //##################################################################################################
61 
62 void cc50_solaris_intel_raiseException(
63     uno_Any * pUnoExc, uno_Mapping * pUno2Cpp );
64 
65 void cc50_solaris_intel_fillUnoException(
66     void*, const char*,
67     uno_Any*, uno_Mapping * pCpp2Uno );
68 }
69 
70