Include also <direct.h> for mkdir() prototype with MSVC. [156727, Kazuki

2004-10-29  Tor Lillqvist  <tml@iki.fi>

	* glib/gstdio.c: Include also <direct.h> for mkdir() prototype
	with MSVC. [156727, Kazuki IWAMOTO]
This commit is contained in:
Tor Lillqvist 2004-10-29 02:04:28 +00:00 committed by Tor Lillqvist
parent 37d3825e29
commit 1eb924770c
6 changed files with 16 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2004-10-29 Tor Lillqvist <tml@iki.fi>
* glib/gstdio.c: Include also <direct.h> for mkdir() prototype
with MSVC. [156727, Kazuki IWAMOTO]
* glib/giochannel.h (g_io_channel_new_file): Redefine also
g_io_channel_new_file to the UTF-8 version on Win32. [156725,
Kazuki IWAMOTO)

View File

@ -1,5 +1,8 @@
2004-10-29 Tor Lillqvist <tml@iki.fi>
* glib/gstdio.c: Include also <direct.h> for mkdir() prototype
with MSVC. [156727, Kazuki IWAMOTO]
* glib/giochannel.h (g_io_channel_new_file): Redefine also
g_io_channel_new_file to the UTF-8 version on Win32. [156725,
Kazuki IWAMOTO)

View File

@ -1,5 +1,8 @@
2004-10-29 Tor Lillqvist <tml@iki.fi>
* glib/gstdio.c: Include also <direct.h> for mkdir() prototype
with MSVC. [156727, Kazuki IWAMOTO]
* glib/giochannel.h (g_io_channel_new_file): Redefine also
g_io_channel_new_file to the UTF-8 version on Win32. [156725,
Kazuki IWAMOTO)

View File

@ -1,5 +1,8 @@
2004-10-29 Tor Lillqvist <tml@iki.fi>
* glib/gstdio.c: Include also <direct.h> for mkdir() prototype
with MSVC. [156727, Kazuki IWAMOTO]
* glib/giochannel.h (g_io_channel_new_file): Redefine also
g_io_channel_new_file to the UTF-8 version on Win32. [156725,
Kazuki IWAMOTO)

View File

@ -1,5 +1,8 @@
2004-10-29 Tor Lillqvist <tml@iki.fi>
* glib/gstdio.c: Include also <direct.h> for mkdir() prototype
with MSVC. [156727, Kazuki IWAMOTO]
* glib/giochannel.h (g_io_channel_new_file): Redefine also
g_io_channel_new_file to the UTF-8 version on Win32. [156725,
Kazuki IWAMOTO)

View File

@ -34,6 +34,7 @@
#ifdef G_OS_WIN32
#include <errno.h>
#include <wchar.h>
#include <direct.h>
#include <io.h>
#endif