From 4d1cbdbe17950bc5c8bc0b9fd126e27cfbd0f835 Mon Sep 17 00:00:00 2001
From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Fri, 30 Aug 2002 21:05:53 +0000
Subject: [PATCH] added Read64() and Write64() docs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 docs/latex/wx/datistrm.tex | 10 ++++++++--
 docs/latex/wx/datostrm.tex | 10 ++++++++--
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/docs/latex/wx/datistrm.tex b/docs/latex/wx/datistrm.tex
index 6c1ec4e1f7..2bff0f65e6 100644
--- a/docs/latex/wx/datistrm.tex
+++ b/docs/latex/wx/datistrm.tex
@@ -82,13 +82,19 @@ Reads a single byte from the stream.
 
 \func{wxUint16}{Read16}{\void}
 
-Reads a 16 bit integer from the stream.
+Reads a 16 bit unsigned integer from the stream.
 
 \membersection{wxDataInputStream::Read32}
 
 \func{wxUint32}{Read32}{\void}
 
-Reads a 32 bit integer from the stream.
+Reads a 32 bit unsigned integer from the stream.
+
+\membersection{wxDataInputStream::Read64}
+
+\func{wxUint64}{Read64}{\void}
+
+Reads a 64 bit unsigned integer from the stream.
 
 \membersection{wxDataInputStream::ReadDouble}
 
diff --git a/docs/latex/wx/datostrm.tex b/docs/latex/wx/datostrm.tex
index 8b5492ee8c..53616ac33d 100644
--- a/docs/latex/wx/datostrm.tex
+++ b/docs/latex/wx/datostrm.tex
@@ -64,13 +64,19 @@ Writes the single byte {\it i8} to the stream.
 
 \func{void}{Write16}{{\param wxUint16 }{i16}}
 
-Writes the 16 bit integer {\it i16} to the stream.
+Writes the 16 bit unsigned integer {\it i16} to the stream.
 
 \membersection{wxDataOutputStream::Write32}
 
 \func{void}{Write32}{{\param wxUint32 }{i32}}
 
-Writes the 32 bit integer {\it i32} to the stream.
+Writes the 32 bit unsigned integer {\it i32} to the stream.
+
+\membersection{wxDataOutputStream::Write64}
+
+\func{void}{Write64}{{\param wxUint64 }{i64}}
+
+Writes the 64 bit unsigned integer {\it i64} to the stream.
 
 \membersection{wxDataOutputStream::WriteDouble}
 
-- 
2.47.2