diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-03-21 01:55:19 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-03-21 01:55:19 +0000 |
commit | 0028b643bc40b38d59cdd3c74a33ec3e282dd397 (patch) | |
tree | 9b5019432c6d69d6f6297d14330be0b426710994 | |
parent | b78ec7a1b55d2125de4f95f1e0ab848a20274866 (diff) |
Document G_HAVE_GINT64 as deprecated. (#335294, Richard Laager)glib-2-10-branchpoint
2006-03-20 Matthias Clasen <mclasen@redhat.com>
* glib/tmpl/types.sgml: Document G_HAVE_GINT64 as deprecated.
(#335294, Richard Laager)
-rw-r--r-- | docs/reference/ChangeLog | 5 | ||||
-rw-r--r-- | docs/reference/glib/tmpl/types.sgml | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index abd6d1978..0e59ccc4c 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2006-03-20 Matthias Clasen <mclasen@redhat.com> + + * glib/tmpl/types.sgml: Document G_HAVE_GINT64 as deprecated. + (#335294, Richard Laager) + 2006-03-15 Matthias Clasen <mclasen@redhat.com> * glib/tmpl/option.sgml: Hint that @error should diff --git a/docs/reference/glib/tmpl/types.sgml b/docs/reference/glib/tmpl/types.sgml index f730d5430..566ecc3a8 100644 --- a/docs/reference/glib/tmpl/types.sgml +++ b/docs/reference/glib/tmpl/types.sgml @@ -164,15 +164,16 @@ Values of this type can range from 0 to 4,294,967,295. <!-- ##### MACRO G_HAVE_GINT64 ##### --> <para> This macro is defined if 64-bit signed and unsigned integers are available -on the platform. +on the platform. </para> +@Deprecated: GLib requires 64-bit integer support since version 2.0, therefore +%G_HAVE_GINT64 is <emphasis>always</emphasis> defined. <!-- ##### TYPEDEF gint64 ##### --> <para> -A signed integer guaranteed to be 64 bits on all platforms on which it is -available (see #G_HAVE_GINT64). +A signed integer guaranteed to be 64 bits on all platforms. Values of this type can range from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. </para> @@ -180,8 +181,7 @@ Values of this type can range from -9,223,372,036,854,775,808 to <!-- ##### TYPEDEF guint64 ##### --> <para> -An unsigned integer guaranteed to be 64 bits on all platforms on which it is -available (see #G_HAVE_GINT64). +An unsigned integer guaranteed to be 64 bits on all platforms. Values of this type can range from 0 to 18,446,744,073,709,551,615. </para> |