mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-12 21:50:36 +01:00
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:
parent
48b41a2f5f
commit
ba8a71589d
@ -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().
|
||||
|
||||
|
@ -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().
|
||||
|
||||
|
@ -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().
|
||||
|
||||
|
@ -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().
|
||||
|
||||
|
@ -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().
|
||||
|
||||
|
@ -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().
|
||||
|
||||
|
@ -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().
|
||||
|
||||
|
@ -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().
|
||||
|
||||
|
@ -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
1
glib.h
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user