summaryrefslogtreecommitdiffstats
path: root/xsd2c/tr.h
diff options
context:
space:
mode:
Diffstat (limited to 'xsd2c/tr.h')
-rw-r--r--xsd2c/tr.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/xsd2c/tr.h b/xsd2c/tr.h
index fe6cb60..15fe5a4 100644
--- a/xsd2c/tr.h
+++ b/xsd2c/tr.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: tr.h,v 1.2 2004/06/03 20:23:03 snowdrop Exp $
+ * $Id: tr.h,v 1.3 2004/10/15 13:35:39 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -24,7 +24,8 @@
#ifndef XSD2C_TR_H
#define XSD2C_TR_H
-void trInitModule(const char* ns);
+/*void trInitModule(const char* ns);*/
+void trInitModule();
void trFreeModule();
char* trC2XSD(const char* cType);
@@ -33,14 +34,14 @@ char* trXSD2C(const char* xsdType);
char* trC2XSDList(const char* cType);
char* trXSD2CList(const char* xsdType);
-void trRegisterType(const char* xsdType, const char* cType);
-void trRegisterTypeNS(const char* ns, const char* xsdType, const char* cType);
+void trRegisterType(const char* xsdType, const char* cType, int builtin);
+void trRegisterTypeNS(const char* ns, const char* xsdType, const char* cType, int builtin);
void trRegisterListType(const char* xsdType, const char* cType);
void trRegisterListTypeNS(const char* ns, const char* xsdType, const char* cType);
int trGetBuildInFlag(const char* xsdType);
-char* trXSDParseNs(const char* xsdType);
+char* trXSDParseNs(char* xsdType);
#endif