C->C++ conversion
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -15,14 +15,14 @@
|
||||
#include "wx/gsocket.h"
|
||||
#include "wx/unix/gsockunx.h"
|
||||
|
||||
extern XtAppContext wxGetAppContext();
|
||||
extern "C" XtAppContext wxGetAppContext();
|
||||
|
||||
static void _GSocket_Motif_Input(XtPointer data, int *fid,
|
||||
XtInputId *id)
|
||||
{
|
||||
GSocket *socket = (GSocket *)data;
|
||||
|
||||
socket->m_functions->Detected_Read(socket);
|
||||
socket->Detected_Read();
|
||||
}
|
||||
|
||||
static void _GSocket_Motif_Output(XtPointer data, int *fid,
|
||||
@@ -30,19 +30,22 @@ static void _GSocket_Motif_Output(XtPointer data, int *fid,
|
||||
{
|
||||
GSocket *socket = (GSocket *)data;
|
||||
|
||||
socket->m_functions->Detected_Write(socket);
|
||||
socket->Detected_Write();
|
||||
}
|
||||
|
||||
int _GSocket_GUI_Init(void)
|
||||
bool GSocketGUIFunctionsTableConcrete::CanUseEventLoop()
|
||||
{ return true; }
|
||||
|
||||
bool GSocketGUIFunctionsTableConcrete::OnInit(void)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
void _GSocket_GUI_Cleanup(void)
|
||||
void GSocketGUIFunctionsTableConcrete::OnExit(void)
|
||||
{
|
||||
}
|
||||
|
||||
int _GSocket_GUI_Init_Socket(GSocket *socket)
|
||||
bool GSocketGUIFunctionsTableConcrete::Init_Socket(GSocket *socket)
|
||||
{
|
||||
int *m_id;
|
||||
|
||||
@@ -55,12 +58,12 @@ int _GSocket_GUI_Init_Socket(GSocket *socket)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void _GSocket_GUI_Destroy_Socket(GSocket *socket)
|
||||
void GSocketGUIFunctionsTableConcrete::Destroy_Socket(GSocket *socket)
|
||||
{
|
||||
free(socket->m_gui_dependent);
|
||||
}
|
||||
|
||||
void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event)
|
||||
void GSocketGUIFunctionsTableConcrete::Install_Callback(GSocket *socket, GSocketEvent event)
|
||||
{
|
||||
int *m_id = (int *)(socket->m_gui_dependent);
|
||||
int c;
|
||||
@@ -96,7 +99,7 @@ void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event)
|
||||
}
|
||||
}
|
||||
|
||||
void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event)
|
||||
void GSocketGUIFunctionsTableConcrete::Uninstall_Callback(GSocket *socket, GSocketEvent event)
|
||||
{
|
||||
int *m_id = (int *)(socket->m_gui_dependent);
|
||||
int c;
|
||||
@@ -116,16 +119,16 @@ void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event)
|
||||
m_id[c] = -1;
|
||||
}
|
||||
|
||||
void _GSocket_Enable_Events(GSocket *socket)
|
||||
void GSocketGUIFunctionsTableConcrete::Enable_Events(GSocket *socket)
|
||||
{
|
||||
_GSocket_Install_Callback(socket, GSOCK_INPUT);
|
||||
_GSocket_Install_Callback(socket, GSOCK_OUTPUT);
|
||||
Install_Callback(socket, GSOCK_INPUT);
|
||||
Install_Callback(socket, GSOCK_OUTPUT);
|
||||
}
|
||||
|
||||
void _GSocket_Disable_Events(GSocket *socket)
|
||||
void GSocketGUIFunctionsTableConcrete::Disable_Events(GSocket *socket)
|
||||
{
|
||||
_GSocket_Uninstall_Callback(socket, GSOCK_INPUT);
|
||||
_GSocket_Uninstall_Callback(socket, GSOCK_OUTPUT);
|
||||
Uninstall_Callback(socket, GSOCK_INPUT);
|
||||
Uninstall_Callback(socket, GSOCK_OUTPUT);
|
||||
}
|
||||
|
||||
#else /* !wxUSE_SOCKETS */
|
||||
|
Reference in New Issue
Block a user