Fixes for #61284:
authorMatthias Clasen <matthiasc@src.gnome.org>
Fri, 23 Nov 2001 20:59:06 +0000 (20:59 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 23 Nov 2001 20:59:06 +0000 (20:59 +0000)
        * 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.

docs/reference/ChangeLog
docs/reference/glib/tmpl/fileutils.sgml
docs/reference/glib/tmpl/limits.sgml
docs/reference/glib/tmpl/windows.sgml

index ede6741..d5dc407 100644 (file)
@@ -1,3 +1,13 @@
+2001-11-22  Matthias Clasen  <matthiasc@poet.de>
+
+       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  <otaylor@redhat.com>
 
        * gobject/gobject-sections.txt: Update.
index 3c8fd2d..c9ae8e8 100644 (file)
@@ -171,7 +171,7 @@ A test to perform an a file using g_file_test().
 
 <!-- ##### STRUCT GDir ##### -->
 <para>
-
+An opaque structure representing an opened directory.
 </para>
 
 
index 3e1a155..684c5ba 100644 (file)
@@ -80,21 +80,21 @@ The maximum value which can be held in a #gulong.
 
 <!-- ##### MACRO G_MININT64 ##### -->
 <para>
-
+The minimum value which can be held in a #gint64.
 </para>
 
 
 
 <!-- ##### MACRO G_MAXINT64 ##### -->
 <para>
-
+The maximum value which can be held in a #gint64.
 </para>
 
 
 
 <!-- ##### MACRO G_MAXUINT64 ##### -->
 <para>
-
+The maximum value which can be held in a #guint64.
 </para>
 
 
index eca61b1..58517f3 100644 (file)
@@ -88,9 +88,20 @@ in any UNIX manual.
 
 <!-- ##### MACRO G_WIN32_DLLMAIN_FOR_DLL_NAME ##### -->
 <para>
-
+On Windows, this macro defines a <function>DllMain()</function> function 
+that stores the actual DLL name that the code being compiled will be 
+included in.
+</para>
+<para>
+On non-Windows platforms, expands to nothing.
 </para>
 
+@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 
+   <filename>windows.h</filename>. If you need a more complex DLL entry 
+   point function, you cannot use this.
+
 @static: 
 @dll_name: