From 5c36ef20dca8cd1793f2d3e88949675299097f40 Mon Sep 17 00:00:00 2001 From: Gian Mario Tagliaretti Date: Mon, 15 Jun 2009 23:02:34 +0200 Subject: Add dpcs for class gio.DataInputStream --- docs/reference/pygio-constants.xml | 66 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) (limited to 'docs/reference/pygio-constants.xml') diff --git a/docs/reference/pygio-constants.xml b/docs/reference/pygio-constants.xml index f716e25..343927e 100644 --- a/docs/reference/pygio-constants.xml +++ b/docs/reference/pygio-constants.xml @@ -14,6 +14,8 @@ + + @@ -106,6 +108,70 @@ + + Gio Data Stream Byte Order Constants + + + Used to ensure proper endianness of streaming data sources across various machine architectures. + + + + + gio.DATA_STREAM_BYTE_ORDER_BIG_ENDIAN + + Selects Big Endian byte order. + + + + gio.DATA_STREAM_BYTE_ORDER_HOST_ENDIAN + + Selects endianness based on host machine's architecture. + + + + gio.DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN + + Selects Little Endian byte order. + + + + + + + Gio Data Stream Newline Type Constants + + + Used when checking for or setting the line endings for a given file. + + + + + gio.DATA_STREAM_NEWLINE_TYPE_LF + + Selects "LF" line endings, common on most modern UNIX platforms. + + + + gio.DATA_STREAM_NEWLINE_TYPE_CR + + Selects "CR" line endings. + + + + gio.DATA_STREAM_NEWLINE_TYPE_CR_LF + + Selects "CR, LF" line ending, common on Microsoft Windows. + + + + gio.DATA_STREAM_NEWLINE_TYPE_ANY + + Automatically try to handle any line ending type. + + + + + Gio Emblem Origin Constants -- cgit