fix fe-text on win32

It still throws out some errors
This commit is contained in:
TingPing 2013-03-16 22:33:36 -03:00
parent 12f0d0b304
commit 69e1ed4278
1 changed files with 7 additions and 0 deletions

View File

@ -430,7 +430,14 @@ fe_input_add (int sok, int flags, void *func, void *data)
int tag, type = 0;
GIOChannel *channel;
#ifdef G_OS_WIN32
if (flags & FIA_FD)
channel = g_io_channel_win32_new_fd (sok);
else
channel = g_io_channel_win32_new_socket (sok);
#else
channel = g_io_channel_unix_new (sok);
#endif
if (flags & FIA_READ)
type |= G_IO_IN | G_IO_HUP | G_IO_ERR;