]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/gsockpm.c
Fix to wxChar* access.
[wxWidgets.git] / src / os2 / gsockpm.c
index a1996b83e3d36a456bb7d13c6b75c85612733942..c210cb0b2893b62e9e6585a06b05e15beb10e14d 100644 (file)
@@ -2,6 +2,7 @@
  * Project: GSocket (Generic Socket) for WX
  * Name:    gsockpm.c
  * Purpose: GSocket: PM part
+ * Licence: The wxWindows licence
  * CVSID:   $Id$
  * ------------------------------------------------------------------------- */
 
@@ -24,16 +25,25 @@ extern void wxAppRemoveSocketHandler(int handle);
 static void _GSocket_PM_Input(void *data)
 {
     GSocket *socket = (GSocket *) data;
-    _GSocket_Detected_Read(socket);
+    socket->m_functions->Detected_Read(socket);
 }
 
 static void _GSocket_PM_Output(void *data)
 {
     GSocket *socket = (GSocket *) data;
-    _GSocket_Detected_Write(socket);
+    socket->m_functions->Detected_Write(socket);
 }
 
-int _GSocket_GUI_Init(GSocket *socket)
+int _GSocket_GUI_Init(void)
+{
+    return 1;
+}
+
+void _GSocket_GUI_Cleanup(void)
+{
+}
+
+int _GSocket_GUI_Init_Socket(GSocket *socket)
 {
     int *m_id;
     socket->m_gui_dependent = (char *)malloc(sizeof(int)*2);
@@ -44,7 +54,7 @@ int _GSocket_GUI_Init(GSocket *socket)
     return TRUE;
 }
 
-void _GSocket_GUI_Destroy(GSocket *socket)
+void _GSocket_GUI_Destroy_Socket(GSocket *socket)
 {
     free(socket->m_gui_dependent);
 }