mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-05 13:19:21 +02:00
Hmm, the parameter to g_io_channel_win32_poll() should be a GPollFD array,
2000-08-27 Tor Lillqvist <tml@iki.fi> Hmm, the parameter to g_io_channel_win32_poll() should be a GPollFD array, not GIOChannel. That way the caller can know which channels cause the callback.
This commit is contained in:
committed by
Tor Lillqvist
parent
3d0a1b3b22
commit
55cd16c993
@@ -2925,8 +2925,8 @@ gint g_io_channel_unix_get_fd (GIOChannel *channel);
|
||||
* On Unix you would do a select() on the file descriptors of the channels.
|
||||
* This should probably be available for all platforms?
|
||||
*/
|
||||
gint g_io_channel_win32_poll (GIOChannel **channels,
|
||||
gint n_channels,
|
||||
gint g_io_channel_win32_poll (GPollFD *fds,
|
||||
gint n_fds,
|
||||
GIOCondition condition,
|
||||
gint timeout);
|
||||
|
||||
|
Reference in New Issue
Block a user