xref: /aoo41x/main/sw/inc/error.h (revision 6a8e298a)
1*6a8e298aSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*6a8e298aSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*6a8e298aSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*6a8e298aSAndrew Rist  * distributed with this work for additional information
6*6a8e298aSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*6a8e298aSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*6a8e298aSAndrew Rist  * "License"); you may not use this file except in compliance
9*6a8e298aSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*6a8e298aSAndrew Rist  *
11*6a8e298aSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*6a8e298aSAndrew Rist  *
13*6a8e298aSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*6a8e298aSAndrew Rist  * software distributed under the License is distributed on an
15*6a8e298aSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*6a8e298aSAndrew Rist  * KIND, either express or implied.  See the License for the
17*6a8e298aSAndrew Rist  * specific language governing permissions and limitations
18*6a8e298aSAndrew Rist  * under the License.
19*6a8e298aSAndrew Rist  *
20*6a8e298aSAndrew Rist  *************************************************************/
21*6a8e298aSAndrew Rist 
22*6a8e298aSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _SWERROR_H
25cdf0e10cSrcweir #define _SWERROR_H
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #define ERR_SWGBASE 25000
28cdf0e10cSrcweir 
29cdf0e10cSrcweir /*** Error Codes **********************************************************/
30cdf0e10cSrcweir #define ERR_VAR_IDX					(ERR_SWGBASE+ 0)
31cdf0e10cSrcweir #define ERR_OUTOFSCOPE      		(ERR_SWGBASE+ 1)
32cdf0e10cSrcweir 
33cdf0e10cSrcweir /* Error Codes fuer Numerierungsregeln */
34cdf0e10cSrcweir #define ERR_NUMLEVEL				(ERR_SWGBASE+ 2)
35cdf0e10cSrcweir 
36cdf0e10cSrcweir /* Error Codes fuer TxtNode */
37cdf0e10cSrcweir #define ERR_NOHINTS					(ERR_SWGBASE+ 3)
38cdf0e10cSrcweir 
39cdf0e10cSrcweir // von _START bis _END sind in der COREDL.DLL entsprechende Strings
40cdf0e10cSrcweir // abgelegt, die erfragt werden koennen.
41cdf0e10cSrcweir #define ERR_SWGMSG_START			(ERR_VAR_IDX)
42cdf0e10cSrcweir #define ERR_SWGMSG_END				(ERR_NOHINTS)
43cdf0e10cSrcweir 
44cdf0e10cSrcweir 
45cdf0e10cSrcweir 
46cdf0e10cSrcweir #endif
47