From: Matthias Clasen Date: Fri, 23 Nov 2001 20:59:06 +0000 (+0000) Subject: Fixes for #61284: X-Git-Tag: GLIB_1_3_12~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e08120da5f29d7542e8705559119a832459e7618;p=platform%2Fupstream%2Fglib.git Fixes for #61284: * glib/tmpl/windows.sgml: Document G_WIN32_DLLMAIN_FOR_DLL_NAME. * glib/tmpl/fileutils.sgml: Document GDir. * glib/tmpl/limits.sgml: Document G_MININT64, G_MAXINT64, G_MAXUINT64. --- diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index ede6741..d5dc407 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,13 @@ +2001-11-22 Matthias Clasen + + Fixes for #61284: + + * glib/tmpl/windows.sgml: Document G_WIN32_DLLMAIN_FOR_DLL_NAME. + + * glib/tmpl/fileutils.sgml: Document GDir. + + * glib/tmpl/limits.sgml: Document G_MININT64, G_MAXINT64, G_MAXUINT64. + Thu Nov 22 12:56:57 2001 Owen Taylor * gobject/gobject-sections.txt: Update. diff --git a/docs/reference/glib/tmpl/fileutils.sgml b/docs/reference/glib/tmpl/fileutils.sgml index 3c8fd2d..c9ae8e8 100644 --- a/docs/reference/glib/tmpl/fileutils.sgml +++ b/docs/reference/glib/tmpl/fileutils.sgml @@ -171,7 +171,7 @@ A test to perform an a file using g_file_test(). - +An opaque structure representing an opened directory. diff --git a/docs/reference/glib/tmpl/limits.sgml b/docs/reference/glib/tmpl/limits.sgml index 3e1a155..684c5ba 100644 --- a/docs/reference/glib/tmpl/limits.sgml +++ b/docs/reference/glib/tmpl/limits.sgml @@ -80,21 +80,21 @@ The maximum value which can be held in a #gulong. - +The minimum value which can be held in a #gint64. - +The maximum value which can be held in a #gint64. - +The maximum value which can be held in a #guint64. diff --git a/docs/reference/glib/tmpl/windows.sgml b/docs/reference/glib/tmpl/windows.sgml index eca61b1..58517f3 100644 --- a/docs/reference/glib/tmpl/windows.sgml +++ b/docs/reference/glib/tmpl/windows.sgml @@ -88,9 +88,20 @@ in any UNIX manual. - +On Windows, this macro defines a DllMain() function +that stores the actual DLL name that the code being compiled will be +included in. + + +On non-Windows platforms, expands to nothing. +@static: empty or "static". +@dll_name: the name of the (pointer to the) char array where the DLL name + will be stored. If this is used, you must also include + windows.h. If you need a more complex DLL entry + point function, you cannot use this. + @static: @dll_name: