xref: /trunk/main/rsc/source/res/rscall.cxx (revision 477794c1)
1*477794c1SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*477794c1SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*477794c1SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*477794c1SAndrew Rist  * distributed with this work for additional information
6*477794c1SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*477794c1SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*477794c1SAndrew Rist  * "License"); you may not use this file except in compliance
9*477794c1SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*477794c1SAndrew Rist  *
11*477794c1SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*477794c1SAndrew Rist  *
13*477794c1SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*477794c1SAndrew Rist  * software distributed under the License is distributed on an
15*477794c1SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*477794c1SAndrew Rist  * KIND, either express or implied.  See the License for the
17*477794c1SAndrew Rist  * specific language governing permissions and limitations
18*477794c1SAndrew Rist  * under the License.
19*477794c1SAndrew Rist  *
20*477794c1SAndrew Rist  *************************************************************/
21*477794c1SAndrew Rist 
22*477794c1SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_rsc.hxx"
26cdf0e10cSrcweir /****************** I N C L U D E S **************************************/
27cdf0e10cSrcweir 
28cdf0e10cSrcweir // C and C++ Includes.
29cdf0e10cSrcweir #include <stdlib.h>
30cdf0e10cSrcweir #include <stdio.h>
31cdf0e10cSrcweir 
32cdf0e10cSrcweir // Programmabhaengige Includes.
33cdf0e10cSrcweir #include <rscall.h>
34cdf0e10cSrcweir #include <rsckey.hxx>
35cdf0e10cSrcweir 
36cdf0e10cSrcweir Atom	nRsc_XYMAPMODEId = InvalidAtom;
37cdf0e10cSrcweir Atom	nRsc_WHMAPMODEId = InvalidAtom;
38cdf0e10cSrcweir Atom	nRsc_X = InvalidAtom;
39cdf0e10cSrcweir Atom	nRsc_Y = InvalidAtom;
40cdf0e10cSrcweir Atom	nRsc_WIDTH = InvalidAtom;
41cdf0e10cSrcweir Atom	nRsc_HEIGHT = InvalidAtom;
42cdf0e10cSrcweir Atom	nRsc_DELTALANG = InvalidAtom;
43cdf0e10cSrcweir Atom	nRsc_DELTASYSTEM = InvalidAtom;
44cdf0e10cSrcweir Atom	nRsc_EXTRADATA = InvalidAtom;
45cdf0e10cSrcweir 
InitRscCompiler()46cdf0e10cSrcweir void InitRscCompiler()
47cdf0e10cSrcweir {
48cdf0e10cSrcweir 	pStdParType 	 = new ByteString( "( const ResId & rResId, sal_Bool" );
49cdf0e10cSrcweir 	pStdPar1		 = new ByteString( '(' );
50cdf0e10cSrcweir 	pStdPar2		 = new ByteString( '(' );
51cdf0e10cSrcweir 
52cdf0e10cSrcweir 	pWinParType 	 = new ByteString( "( Window * pParent, const ResId & rResId, sal_Bool" );
53cdf0e10cSrcweir 	pWinPar1		 = new ByteString( "( pParent," );
54cdf0e10cSrcweir 	pWinPar2		 = new ByteString( "( this," );
55cdf0e10cSrcweir 	nRefDeep		 = 10;
56cdf0e10cSrcweir 	nRsc_XYMAPMODEId = InvalidAtom;
57cdf0e10cSrcweir 	nRsc_WHMAPMODEId = InvalidAtom;
58cdf0e10cSrcweir     pHS = new AtomContainer();
59cdf0e10cSrcweir };
60cdf0e10cSrcweir 
61