* Fixed a compilation problem on Windows

* Fully added sckint.cpp to makefile.b32


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2294 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1999-04-27 18:24:37 +00:00
parent ec5d85fbd5
commit e5e41feafa
3 changed files with 2 additions and 36 deletions

View File

@@ -1060,31 +1060,6 @@ wxSocketClient *wxSocketHandler::CreateClient(wxSocketBase::wxSockFlags flags)
return client;
}
#ifdef __WINDOWS__
// --------------------------------------------------------------
// --------- wxSocketHandler: Windows specific methods ----------
// --------------------------------------------------------------
UINT wxSocketHandler::NewMessage(wxSocketBase *sock)
{
internal->firstAvailableMsg++;
smsg_list->Append(internal->firstAvailableMsg, sock);
return internal->firstAvailableMsg;
}
void wxSocketHandler::DestroyMessage(UINT msg)
{
wxNode *node = smsg_list->Find(msg);
delete node;
}
HWND wxSocketHandler::GetHWND() const
{
return internal->sockWin;
}
#endif
bool wxSocketModule::OnInit()
{
wxSocketHandler::master = new wxSocketHandler();