X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9f3280c9c40416b2d61fee4a084e55be2d003699..7fa4dc1cfcc55b0fe425a3ebe5e992ff8255481b:/src/motif/gsockmot.c?ds=inline diff --git a/src/motif/gsockmot.c b/src/motif/gsockmot.c index 41459ce679..e4904f6610 100644 --- a/src/motif/gsockmot.c +++ b/src/motif/gsockmot.c @@ -3,6 +3,7 @@ * Name: gsockmot.c * Purpose: GSocket: Motif part * CVSID: $Id$ + * Licence: The wxWindows licence * ------------------------------------------------------------------------- */ #include "wx/setup.h" @@ -21,7 +22,7 @@ static void _GSocket_Motif_Input(XtPointer data, int *fid, { GSocket *socket = (GSocket *)data; - _GSocket_Detected_Read(socket); + socket->m_functions->Detected_Read(socket); } static void _GSocket_Motif_Output(XtPointer data, int *fid, @@ -29,10 +30,19 @@ static void _GSocket_Motif_Output(XtPointer data, int *fid, { GSocket *socket = (GSocket *)data; - _GSocket_Detected_Write(socket); + socket->m_functions->Detected_Write(socket); } -bool _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; @@ -45,7 +55,7 @@ bool _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); }