You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2007/07/12 03:51:15 UTC

svn commit: r555457 - in /xalan/c/trunk/src/xalanc/PlatformSupport: StdBinInputStream.cpp StdBinInputStream.hpp XalanLocator.hpp XalanTranscodingServices.hpp

Author: dbertoni
Date: Wed Jul 11 18:51:14 2007
New Revision: 555457

URL: http://svn.apache.org/viewvc?view=rev&rev=555457
Log:
Updates for changes to underlying Xerces-C classes and types.

Modified:
    xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.cpp
    xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.hpp
    xalan/c/trunk/src/xalanc/PlatformSupport/XalanLocator.hpp
    xalan/c/trunk/src/xalanc/PlatformSupport/XalanTranscodingServices.hpp

Modified: xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.cpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.cpp?view=diff&rev=555457&r1=555456&r2=555457
==============================================================================
--- xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.cpp (original)
+++ xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.cpp Wed Jul 11 18:51:14 2007
@@ -45,7 +45,7 @@
 
 
 
-unsigned int
+XMLFilePos
 StdBinInputStream::curPos() const
 {
 	return m_stream.tellg();
@@ -53,10 +53,10 @@
 
 
 
-unsigned int
+XMLSize_t
 StdBinInputStream::readBytes(
 			XMLByte* const      toFill,
-			const unsigned int	maxToRead)
+			const XMLSize_t	    maxToRead)
 {
 	assert(sizeof(XMLByte) == sizeof(char));
 

Modified: xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.hpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.hpp?view=diff&rev=555457&r1=555456&r2=555457
==============================================================================
--- xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.hpp (original)
+++ xalan/c/trunk/src/xalanc/PlatformSupport/StdBinInputStream.hpp Wed Jul 11 18:51:14 2007
@@ -60,13 +60,13 @@
 	virtual
 	~StdBinInputStream();
 
-	virtual unsigned int
+	virtual XMLFilePos
 	curPos() const;
 
-	virtual unsigned int
+	virtual XMLSize_t
 	readBytes(
 			XMLByte* const      toFill,
-			const unsigned int	maxToRead);
+			const XMLSize_t	    maxToRead);
 
 private:
 

Modified: xalan/c/trunk/src/xalanc/PlatformSupport/XalanLocator.hpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/src/xalanc/PlatformSupport/XalanLocator.hpp?view=diff&rev=555457&r1=555456&r2=555457
==============================================================================
--- xalan/c/trunk/src/xalanc/PlatformSupport/XalanLocator.hpp (original)
+++ xalan/c/trunk/src/xalanc/PlatformSupport/XalanLocator.hpp Wed Jul 11 18:51:14 2007
@@ -47,7 +47,7 @@
 
     typedef Locator     ParentType;
 
-    typedef XMLSSize_t  size_type;
+    typedef unsigned long   size_type;
 
     XalanLocator() {}
 

Modified: xalan/c/trunk/src/xalanc/PlatformSupport/XalanTranscodingServices.hpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/src/xalanc/PlatformSupport/XalanTranscodingServices.hpp?view=diff&rev=555457&r1=555456&r2=555457
==============================================================================
--- xalan/c/trunk/src/xalanc/PlatformSupport/XalanTranscodingServices.hpp (original)
+++ xalan/c/trunk/src/xalanc/PlatformSupport/XalanTranscodingServices.hpp Wed Jul 11 18:51:14 2007
@@ -59,7 +59,7 @@
     terminate();
 
     typedef unsigned char   XalanXMLByte;
-    typedef unsigned int    size_type;
+    typedef XMLSize_t       size_type;
     typedef unsigned int    UnicodeCharType;
 
     static size_type



---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org