From: Tim Janik Date: Tue, 10 Jul 2007 11:12:28 +0000 (+0000) Subject: corrected descriptions of gsize and gssize. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=f78096e3610cc649e8e2f684168bf898dc9c4d33;p=dana%2Fcg-glib.git corrected descriptions of gsize and gssize. Tue Jul 10 13:11:55 2007 Tim Janik * glib/tmpl/types.sgml: corrected descriptions of gsize and gssize. svn path=/trunk/; revision=5621 --- diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 0228b851..1a869b26 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 10 13:11:55 2007 Tim Janik + + * glib/tmpl/types.sgml: corrected descriptions of gsize and gssize. + Tue Jul 10 13:04:03 2007 Tim Janik * minor docu build fixes. diff --git a/docs/reference/glib/tmpl/types.sgml b/docs/reference/glib/tmpl/types.sgml index f1c9544e..c6c06eec 100644 --- a/docs/reference/glib/tmpl/types.sgml +++ b/docs/reference/glib/tmpl/types.sgml @@ -222,13 +222,16 @@ Values of this type can range from -#G_MAXDOUBLE to #G_MAXDOUBLE. -An unsigned 32-bit integer intended to represent sizes of data structures. +An unsigned integer type of the result of the sizeof operator, corresponding +to the size_t type defined in C99. This type is wide enough to hold the numeric +value of a pointer, so it is usually 32bit wide on a 32bit platform and +64bit wide on a 64bit platform. -A signed 32-bit integer intended to represent sizes of data structures. +A signed variant of gsize, corresponding to the ssize_t defined on most platforms.