/* -------------------------------------------------------------------------
* Project: GSocket (Generic Socket)
- * Name: gsockmsw.c
+ * Name: gsockmsw.cpp
* Author: Guillermo Rodriguez Garcia <guille@iies.es>
* Purpose: GSocket GUI-specific MSW code
* CVSID: $Id$
* -------------------------------------------------------------------------
*/
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+ #pragma hdrstop
+#endif
+
/*
* TODO: for WinCE we need to replace WSAAsyncSelect
* (Windows message-based notification of network events for a socket)
* using select() and sends a message to the main thread.
*/
-/*
- * PLEASE don't put C++ comments here - this is a C source file.
- */
-
/* including rasasync.h (included from windows.h itself included from
* wx/setup.h and/or winsock.h results in this warning for
* RPCNOTIFICATION_ROUTINE
#include "wx/msw/gsockmsw.h"
#include "wx/gsocket.h"
-HINSTANCE wxGetInstance(void);
+extern "C" HINSTANCE wxGetInstance(void);
#define INSTANCE wxGetInstance()
#else
#define CLASSNAME TEXT("_GSocket_Internal_Window_Class")
/* implemented in utils.cpp */
-extern WXDLLIMPEXP_BASE HWND
+extern "C" WXDLLIMPEXP_BASE HWND
wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc);
/* Maximum number of different GSocket objects at a given time.
typedef int (PASCAL *WSAAsyncSelectFunc)(SOCKET,HWND,u_int,long);
+LRESULT CALLBACK _GSocket_Internal_WinProc(HWND, UINT, WPARAM, LPARAM);
+
/* Global variables */
extern HINSTANCE INSTANCE;
static WSAAsyncSelectFunc gs_WSAAsyncSelect = NULL;
static HMODULE gs_wsock32dll = 0;
+bool GSocketGUIFunctionsTableConcrete::CanUseEventLoop()
+{ return true; }
+
/* Global initializers */
-int _GSocket_GUI_Init(void)
+bool GSocketGUIFunctionsTableConcrete::OnInit()
{
static LPCTSTR pclassname = NULL;
int i;
/* Create internal window for event notifications */
hWin = wxCreateHiddenWindow(&pclassname, CLASSNAME, _GSocket_Internal_WinProc);
if (!hWin)
- return FALSE;
+ return false;
/* Initialize socket list */
InitializeCriticalSection(&critical);
sockets): */
gs_wsock32dll = LoadLibraryA("wsock32.dll");
if (!gs_wsock32dll)
- return FALSE;
+ return false;
gs_WSAAsyncSelect =(WSAAsyncSelectFunc)GetProcAddress(gs_wsock32dll,
"WSAAsyncSelect");
if (!gs_WSAAsyncSelect)
- return FALSE;
+ return false;
- return TRUE;
+ return true;
}
-void _GSocket_GUI_Cleanup(void)
+void GSocketGUIFunctionsTableConcrete::OnExit()
{
/* Destroy internal window */
DestroyWindow(hWin);
/* Per-socket GUI initialization / cleanup */
-int _GSocket_GUI_Init_Socket(GSocket *socket)
+bool GSocketGUIFunctionsTableConcrete::Init_Socket(GSocket *socket)
{
int i;
if (i == firstAvailable) /* abort! */
{
LeaveCriticalSection(&critical);
- return FALSE;
+ return false;
}
}
socketList[i] = socket;
LeaveCriticalSection(&critical);
- return TRUE;
+ return true;
}
-void _GSocket_GUI_Destroy_Socket(GSocket *socket)
+void GSocketGUIFunctionsTableConcrete::Destroy_Socket(GSocket *socket)
{
/* Remove the socket from the list */
EnterCriticalSection(&critical);
* events for internal processing, but we will only notify users
* when an appropiate callback function has been installed.
*/
-void _GSocket_Enable_Events(GSocket *socket)
+void GSocketGUIFunctionsTableConcrete::Enable_Events(GSocket *socket)
{
assert (socket != NULL);
/* _GSocket_Disable_Events:
* Disable event notifications (when shutdowning the socket)
*/
-void _GSocket_Disable_Events(GSocket *socket)
+void GSocketGUIFunctionsTableConcrete::Disable_Events(GSocket *socket)
{
assert (socket != NULL);