00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00029 #ifndef _ASN1XERCTYPES_H_
00030 #define _ASN1XERCTYPES_H_
00031
00032 #ifdef __cplusplus
00033 extern "C" {
00034 #endif
00035
00036 #include <stdio.h>
00037 #include <stdlib.h>
00038 #include <setjmp.h>
00039
00040 #include "asn1xer.h"
00041 #include "rtxmlsrc/rtSaxCParser.h"
00042
00043 typedef void (*ASN1XERStartElementHandler)(void *userData,
00044 const XMLCHAR *name,
00045 const XMLCHAR **atts);
00046
00047 typedef void (*ASN1XEREndElementHandler)(void *userData,
00048 const XMLCHAR *name);
00049
00050
00051 typedef void (*ASN1XERCharacterHandler)(void *userData,
00052 const XMLCHAR *s,
00053 int len);
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067 typedef OSSAXHandlerBase ASN1SAXCDecodeHandlerBase;
00068
00069
00070
00071
00072 #define ASN1SAXCTRY(pctxt,stat)
00073
00074
00075 #define ASN1SAXCTHROW(pctxt,stat) do { LOG_RTERR ((pctxt), stat); \
00076 } while (0)
00077
00078 #define ASN1SAXCCATCH else
00079
00080 #define STRX(pctxt,pWideStr) xerTextToCStr ((pctxt), (pWideStr))
00081
00082 #if defined (XML_UNICODE) && defined(XML_UNICODE_WCHAR_T)
00083 #define LSTRX(pctxt,pLStr) xerTextToCStr ((pctxt), (pLStr))
00084 #else
00085 #define LSTRX(pctxt,pLStr) \
00086 strcpy ((char*)rtxMemAlloc (pctxt, strlen (pLStr) + 1), (pLStr))
00087 #endif
00088
00089 #define XERCDIAGSTRM2(pctxt,a) RTDIAGSTRM2(pctxt,a)
00090 #define XERCDIAGSTRM3(pctxt,a,b) RTDIAGSTRM3(pctxt,a,b)
00091 #define XERCDIAGSTRM4(pctxt,a,b,c) RTDIAGSTRM4(pctxt,a,b,c)
00092
00093 #ifndef _COMPACT
00094 #define DECLARE_NON_COMPACT_VAR(type,var) type var
00095 #else
00096 #define DECLARE_NON_COMPACT_VAR(type,var)
00097 #endif
00098
00099 #ifdef __cplusplus
00100 }
00101 #endif
00102 #endif