X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d391a3451080638e6b1f2f24f92078d18c5ab9d8..8cb4919bd4261d98a379b964f3955e2d2d8900f6:/src/motif/gsockmot.c diff --git a/src/motif/gsockmot.c b/src/motif/gsockmot.c index 797c3cff7b..f442a508dc 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" @@ -32,9 +33,8 @@ static void _GSocket_Motif_Output(XtPointer data, int *fid, _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); @@ -42,6 +42,8 @@ void _GSocket_GUI_Init(GSocket *socket) m_id[0] = -1; m_id[1] = -1; + + return TRUE; } void _GSocket_GUI_Destroy(GSocket *socket) @@ -117,4 +119,9 @@ void _GSocket_Disable_Events(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 */