]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/gsockgtk.c
//... => /* ... */
[wxWidgets.git] / src / gtk / gsockgtk.c
index f31333439f570c66c4751053a96b838ac8630419..8677ef3626e627a2280faedea17fd9f30e65ed9b 100644 (file)
@@ -5,26 +5,24 @@
  * CVSID:   $Id$
  * -------------------------------------------------------------------------
  */
+#include "wx/setup.h"
+
+#if wxUSE_SOCKETS
+
 #include <stdlib.h>
-#include <gdk/gdk.h>
-#include <glib.h>
-#include <wx/gsocket.h>
-#include "../unix/gsockunx.h"
+#include "gdk/gdk.h"
+#include "glib.h"
+#include "wx/gsocket.h"
+#include "wx/unix/gsockunx.h"
 
 void _GSocket_GDK_Input(gpointer data, gint source, GdkInputCondition condition)
 {
   GSocket *socket = (GSocket *)data;
 
-  switch (condition) {
-  case GDK_INPUT_READ:
+  if (condition & GDK_INPUT_READ)
     _GSocket_Detected_Read(socket);
-    break;
-  case GDK_INPUT_WRITE:
+  if (condition & GDK_INPUT_WRITE)
     _GSocket_Detected_Write(socket);
-    break;
-  default:
-    break;
-  } 
 }
 
 void _GSocket_GUI_Init(GSocket *socket)
@@ -105,3 +103,5 @@ unsigned long GSocket_GetEventID(GSocket *socket)
 void GSocket_DoEvent(unsigned long evt_id)
 {
 }
+
+#endif /* wxUSE_SOCKETS */