git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28708
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class WXDLLEXPORT wxRendererNative;
class WXDLLIMPEXP_BASE wxString;
class WXDLLEXPORT wxRendererNative;
class WXDLLIMPEXP_BASE wxString;
-extern "C"
-{
- struct GSocketGUIFunctionsTable;
-}
+class GSocketGUIFunctionsTable;
// ----------------------------------------------------------------------------
// toolkit information
// ----------------------------------------------------------------------------
// toolkit information
/* Sets GUI functions callbacks. Must be called *before* GSocket_Init
if the app uses async sockets. */
/* Sets GUI functions callbacks. Must be called *before* GSocket_Init
if the app uses async sockets. */
-void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *guifunc);
+void GSocket_SetGUIFunctions(GSocketGUIFunctionsTable *guifunc);
/* GSocket_Init() must be called at the beginning */
int GSocket_Init(void);
/* GSocket_Init() must be called at the beginning */
int GSocket_Init(void);
/* Global initialisers */
/* Global initialisers */
-void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *table)
+void GSocket_SetGUIFunctions(GSocketGUIFunctionsTable *table)
{
// do nothing, wxMac doesn't have wxBase-GUI separation yet
}
{
// do nothing, wxMac doesn't have wxBase-GUI separation yet
}
/* Table of GUI-related functions. We must call them indirectly because
* of wxBase and GUI separation: */
/* Table of GUI-related functions. We must call them indirectly because
* of wxBase and GUI separation: */
-static class GSocketGUIFunctionsTable *gs_gui_functions;
+static GSocketGUIFunctionsTable *gs_gui_functions;
class GSocketGUIFunctionsTableNull: public GSocketGUIFunctionsTable
{
class GSocketGUIFunctionsTableNull: public GSocketGUIFunctionsTable
{
{}
/* Global initialisers */
{}
/* Global initialisers */
-void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *guifunc)
+void GSocket_SetGUIFunctions(GSocketGUIFunctionsTable *guifunc)
{
gs_gui_functions = guifunc;
}
{
gs_gui_functions = guifunc;
}
- static class GSocketGUIFunctionsTableNull table;
+ static GSocketGUIFunctionsTableNull table;
gs_gui_functions = &table;
}
if ( !gs_gui_functions->OnInit() )
gs_gui_functions = &table;
}
if ( !gs_gui_functions->OnInit() )
/* Table of GUI-related functions. We must call them indirectly because
* of wxBase and GUI separation: */
/* Table of GUI-related functions. We must call them indirectly because
* of wxBase and GUI separation: */
-static struct GSocketGUIFunctionsTable *gs_gui_functions;
+static GSocketGUIFunctionsTable *gs_gui_functions;
class GSocketGUIFunctionsTableNull: public GSocketGUIFunctionsTable
{
class GSocketGUIFunctionsTableNull: public GSocketGUIFunctionsTable
{
{}
/* Global initialisers */
{}
/* Global initialisers */
-void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *guifunc)
+void GSocket_SetGUIFunctions(GSocketGUIFunctionsTable *guifunc)
{
gs_gui_functions = guifunc;
}
{
gs_gui_functions = guifunc;
}
{
if (!gs_gui_functions)
{
{
if (!gs_gui_functions)
{
- static class GSocketGUIFunctionsTableNull table;
+ static GSocketGUIFunctionsTableNull table;
gs_gui_functions = &table;
}
if ( !gs_gui_functions->OnInit() )
gs_gui_functions = &table;
}
if ( !gs_gui_functions->OnInit() )