_GSocket_Detected_Write(socket);
}
-void _GSocket_GUI_Init(GSocket *socket)
+int _GSocket_GUI_Init(GSocket *socket)
{
- int i;
int *m_id;
socket->m_gui_dependent = (char *)malloc(sizeof(int)*2);
m_id[0] = -1;
m_id[1] = -1;
+
+ return TRUE;
}
void _GSocket_GUI_Destroy(GSocket *socket)
_GSocket_Uninstall_Callback(socket, GSOCK_OUTPUT);
}
-#endif /* wxUSE_SOCKETS */
+#else /* !wxUSE_SOCKETS */
+
+/* some compilers don't like having empty source files */
+static int wxDummyGsockVar = 0;
+
+#endif /* wxUSE_SOCKETS/!wxUSE_SOCKETS */