From 8bc6150f03338c69eb9bc3a040c24d509f3d1dad Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 23 Jun 2012 12:27:14 +0000 Subject: [PATCH] Clarify wxFileOffset description a bit. It wasn't clear how wxFileOffset was defined under Windows without wxHAS_HUGE_FILES. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/filefn.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/wx/filefn.h b/interface/wx/filefn.h index f2c9551b4f..c1f4bbd9b9 100644 --- a/interface/wx/filefn.h +++ b/interface/wx/filefn.h @@ -113,9 +113,9 @@ const int wxInvalidOffset = -1; /** The type used to store and provide byte offsets or byte sizes for files or streams. - It is type-defined as @c off_t on POSIX platforms - (see http://www.gnu.org/software/libc/manual/html_node/File-Position-Primitive.html) - or to @c wxLongLong_t on Windows when @c wxHAS_HUGE_FILES is defined. + This type is usually just a synonym for @c off_t but can be defined as + @c wxLongLong_t if @c wxHAS_HUGE_FILES is defined but @c off_t is only 32 + bits. */ typedef off_t wxFileOffset; -- 2.45.2