glib.h No use for separate condition parameter.

2000-08-31  Tor Lillqvist  <tml@iki.fi>

	* glib.h
	* giowin32.c (g_io_channel_win32_poll): No use for separate
	condition parameter.
This commit is contained in:
Tor Lillqvist 2000-08-31 21:58:59 +00:00 committed by Tor Lillqvist
parent 48b41a2f5f
commit ba8a71589d
12 changed files with 34 additions and 6 deletions

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -1,5 +1,9 @@
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().

View File

@ -874,7 +874,6 @@ g_io_channel_win32_set_debug (GIOChannel *channel,
gint
g_io_channel_win32_poll (GPollFD *fds,
gint n_fds,
GIOCondition condition,
gint timeout)
{
int i;
@ -899,7 +898,7 @@ g_io_channel_win32_wait_for_condition (GIOChannel *channel,
pollfd.fd = (gint) win32_channel->data_avail_event;
pollfd.events = condition;
return g_io_channel_win32_poll (&pollfd, 1, condition, timeout);
return g_io_channel_win32_poll (&pollfd, 1, timeout);
}
/* This variable and the functions below are present just to be

1
glib.h
View File

@ -2927,7 +2927,6 @@ gint g_io_channel_unix_get_fd (GIOChannel *channel);
*/
gint g_io_channel_win32_poll (GPollFD *fds,
gint n_fds,
GIOCondition condition,
gint timeout);
/* This is used to add polling for Windows messages. GDK (GTk+) programs

View File

@ -874,7 +874,6 @@ g_io_channel_win32_set_debug (GIOChannel *channel,
gint
g_io_channel_win32_poll (GPollFD *fds,
gint n_fds,
GIOCondition condition,
gint timeout)
{
int i;
@ -899,7 +898,7 @@ g_io_channel_win32_wait_for_condition (GIOChannel *channel,
pollfd.fd = (gint) win32_channel->data_avail_event;
pollfd.events = condition;
return g_io_channel_win32_poll (&pollfd, 1, condition, timeout);
return g_io_channel_win32_poll (&pollfd, 1, timeout);
}
/* This variable and the functions below are present just to be

View File

@ -2927,7 +2927,6 @@ gint g_io_channel_unix_get_fd (GIOChannel *channel);
*/
gint g_io_channel_win32_poll (GPollFD *fds,
gint n_fds,
GIOCondition condition,
gint timeout);
/* This is used to add polling for Windows messages. GDK (GTk+) programs