]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/gsockpm.c
rtti api mods added
[wxWidgets.git] / src / os2 / gsockpm.c
index a1996b83e3d36a456bb7d13c6b75c85612733942..9cf4ce0229ca9781983c0d2c37925da81ea7f20b 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$
  * ------------------------------------------------------------------------- */
 
@@ -33,7 +34,16 @@ static void _GSocket_PM_Output(void *data)
     _GSocket_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);
 }