mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 15:06:14 +01:00
Document G_WIN32_IS_NT_BASED, G_WIN32_HAVE_WIDECHAR_API.
2004-10-31 Matthias Clasen <mclasen@redhat.com> * glib/tmpl/windows.sgml: Document G_WIN32_IS_NT_BASED, G_WIN32_HAVE_WIDECHAR_API. * glib/glib-sections.txt: Add g_lstat * glib/running.sgml: Document G_WIN32_PRETEND_WIN9X. 200
This commit is contained in:
parent
8ff42a540e
commit
0032a3c1b6
@ -1,3 +1,8 @@
|
||||
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gwin32.c: Add bits of markup to g_win32_get_windows_version()
|
||||
docs.
|
||||
|
||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gwin32.c: Document g_win32_get_windows_version().
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gwin32.c: Add bits of markup to g_win32_get_windows_version()
|
||||
docs.
|
||||
|
||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gwin32.c: Document g_win32_get_windows_version().
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gwin32.c: Add bits of markup to g_win32_get_windows_version()
|
||||
docs.
|
||||
|
||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gwin32.c: Document g_win32_get_windows_version().
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gwin32.c: Add bits of markup to g_win32_get_windows_version()
|
||||
docs.
|
||||
|
||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gwin32.c: Document g_win32_get_windows_version().
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gwin32.c: Add bits of markup to g_win32_get_windows_version()
|
||||
docs.
|
||||
|
||||
2004-10-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gwin32.c: Document g_win32_get_windows_version().
|
||||
|
@ -1,3 +1,12 @@
|
||||
2004-10-31 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/tmpl/windows.sgml: Document G_WIN32_IS_NT_BASED,
|
||||
G_WIN32_HAVE_WIDECHAR_API.
|
||||
|
||||
* glib/glib-sections.txt: Add g_lstat
|
||||
|
||||
* glib/running.sgml: Document G_WIN32_PRETEND_WIN9X.
|
||||
|
||||
2004-10-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/tmpl/option.sgml: Add an example.
|
||||
|
@ -991,6 +991,7 @@ g_open
|
||||
g_rename
|
||||
g_mkdir
|
||||
g_stat
|
||||
g_lstat
|
||||
g_unlink
|
||||
g_remove
|
||||
g_fopen
|
||||
|
@ -97,6 +97,17 @@ variables like <envar>LANG</envar>, <envar>PATH</envar> or <envar>HOME</envar>.
|
||||
</para>
|
||||
</formalpara>
|
||||
|
||||
<formalpara>
|
||||
<title><envar>G_WIN32_PRETEND_WIN9X</envar></title>
|
||||
|
||||
<para>
|
||||
Setting this variable to any value forces g_win32_get_windows_version()
|
||||
to return a version code for Windows 9x. This is mainly an internal
|
||||
debugging aid for GTK+ and GLib developers, to be able to check the
|
||||
code paths for Windows 9x.
|
||||
</para>
|
||||
</formalpara>
|
||||
|
||||
</refsect2>
|
||||
|
||||
<refsect2>
|
||||
|
@ -99,22 +99,28 @@ On non-Windows platforms, expands to nothing.
|
||||
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.
|
||||
<!-- # Unused Parameters # -->
|
||||
@static:
|
||||
@dll_name:
|
||||
|
||||
|
||||
<!-- ##### MACRO G_WIN32_HAVE_WIDECHAR_API ##### -->
|
||||
<para>
|
||||
|
||||
On Windows, this macro defines an expression which evaluates to %TRUE
|
||||
if functions like _wopen(), _wrename(), etc., are available.
|
||||
</para>
|
||||
<para>
|
||||
On non-Windows platforms, it is not defined.
|
||||
</para>
|
||||
|
||||
|
||||
@Since: 2.6
|
||||
|
||||
<!-- ##### MACRO G_WIN32_IS_NT_BASED ##### -->
|
||||
<para>
|
||||
|
||||
On Windows, this macro defines an expression which evaluates to %TRUE
|
||||
if the code is running on an NT-based Windows operating system.
|
||||
</para>
|
||||
<para>
|
||||
On non-Windows platforms, it is not defined.
|
||||
</para>
|
||||
|
||||
@Since: 2.6
|
||||
|
||||
|
||||
|
@ -1313,12 +1313,15 @@ _g_win32_thread_init (void)
|
||||
* version and feature information should use Win32 API like
|
||||
* GetVersionEx() and VerifyVersionInfo().
|
||||
*
|
||||
* If there is an environment variable G_WIN32_PRETEND_WIN9X defined
|
||||
* (with any value), this function always returns a version code for
|
||||
* Windows 9x. This is mainly an internal debugging aid for GTK and
|
||||
* GLib developers, to be able to check the code paths for Win9x.
|
||||
* If there is an environment variable <envar>G_WIN32_PRETEND_WIN9X</envar>
|
||||
* defined (with any value), this function always returns a version
|
||||
* code for Windows 9x. This is mainly an internal debugging aid for
|
||||
* GTK+ and GLib developers, to be able to check the code paths for
|
||||
* Windows 9x.
|
||||
*
|
||||
* Returns: The version information.
|
||||
*
|
||||
* Since: 2.6
|
||||
**/
|
||||
guint
|
||||
g_win32_get_windows_version (void)
|
||||
|
Loading…
Reference in New Issue
Block a user