0
|
1 /*
|
|
2 error2.h
|
|
3
|
|
4 Error handling.
|
|
5
|
|
6 gSOAP XML Web services tools
|
|
7 Copyright (C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved.
|
|
8 This part of the software is released under one of the following licenses:
|
|
9 GPL or Genivia's license for commercial use.
|
|
10 --------------------------------------------------------------------------------
|
|
11 GPL license.
|
|
12
|
|
13 This program is free software; you can redistribute it and/or modify it under
|
|
14 the terms of the GNU General Public License as published by the Free Software
|
|
15 Foundation; either version 2 of the License, or (at your option) any later
|
|
16 version.
|
|
17
|
|
18 This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
19 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
20 PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
21
|
|
22 You should have received a copy of the GNU General Public License along with
|
|
23 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
24 Place, Suite 330, Boston, MA 02111-1307 USA
|
|
25
|
|
26 Author contact information:
|
|
27 engelen@genivia.com / engelen@acm.org
|
|
28
|
|
29 This program is released under the GPL with the additional exemption that
|
|
30 compiling, linking, and/or using OpenSSL is allowed.
|
|
31 --------------------------------------------------------------------------------
|
|
32 A commercial use license is available from Genivia, Inc., contact@genivia.com
|
|
33 --------------------------------------------------------------------------------
|
|
34 */
|
|
35
|
|
36 extern char errbuf[];
|
|
37
|
|
38 #ifdef WIN32_WITHOUT_SOLARIS_FLEX
|
|
39 extern void soapcpp2error(char*);
|
|
40 #else
|
|
41 extern void yyerror(char*);
|
|
42 #endif
|
|
43
|
|
44 extern void lexerror(const char*);
|
|
45 extern void synerror(const char *);
|
|
46 extern void semerror(const char *);
|
|
47 extern void semwarn(const char *);
|
|
48 extern void compliancewarn(const char *);
|
|
49 extern void typerror(const char*);
|
|
50 extern void execerror(const char*);
|
|
51 extern void progerror(const char*, const char*, int);
|
|
52 extern int errstat(void);
|