mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
This commit is contained in:
parent
de070bf485
commit
a90b5cf37a
1998 changed files with 1034301 additions and 0 deletions
67
wxWidgets/include/wx/private/socketevtdispatch.h
Normal file
67
wxWidgets/include/wx/private/socketevtdispatch.h
Normal file
|
@ -0,0 +1,67 @@
|
|||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/private/socketevtdispatch.h
|
||||
// Purpose: wxSocketEventDispatcher class
|
||||
// Authors: Angel Vidal
|
||||
// Modified by:
|
||||
// Created: August 2006
|
||||
// Copyright: (c) Angel Vidal
|
||||
// RCS-ID: $Id: socketevtdispatch.h 43976 2006-12-14 14:13:57Z VS $
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_PRIVATE_SOCKETEVTDISPATCH_H_
|
||||
#define _WX_PRIVATE_SOCKETEVTDISPATCH_H_
|
||||
|
||||
#include "wx/defs.h"
|
||||
|
||||
#if wxUSE_SOCKETS
|
||||
|
||||
#include "wx/hash.h"
|
||||
|
||||
// forward declarations
|
||||
class wxSocketEventDispatcherEntry;
|
||||
class GSocket;
|
||||
|
||||
enum wxSocketEventDispatcherType
|
||||
{
|
||||
wxSocketEventDispatcherInput,
|
||||
wxSocketEventDispatcherOutput
|
||||
};
|
||||
|
||||
class WXDLLIMPEXP_CORE wxSocketEventDispatcher : public wxHashTable
|
||||
{
|
||||
protected:
|
||||
wxSocketEventDispatcher() : wxHashTable(wxKEY_INTEGER) {}
|
||||
|
||||
public:
|
||||
// returns instance of the table
|
||||
static wxSocketEventDispatcher& Get();
|
||||
|
||||
virtual ~wxSocketEventDispatcher()
|
||||
{
|
||||
WX_CLEAR_HASH_TABLE(*this)
|
||||
}
|
||||
|
||||
void RegisterCallback(int fd, wxSocketEventDispatcherType socketType,
|
||||
GSocket* socket);
|
||||
|
||||
void UnregisterCallback(int fd, wxSocketEventDispatcherType socketType);
|
||||
|
||||
void RunLoop(int timeout = 0);
|
||||
|
||||
private:
|
||||
void AddEvents(fd_set* readset, fd_set* writeset);
|
||||
|
||||
int FillSets(fd_set* readset, fd_set* writeset);
|
||||
|
||||
wxSocketEventDispatcherEntry* FindEntry(int fd);
|
||||
|
||||
private:
|
||||
static wxSocketEventDispatcher *ms_instance;
|
||||
|
||||
friend class wxSocketEventDispatcherModule;
|
||||
};
|
||||
|
||||
#endif // wxUSE_SOCKETS
|
||||
|
||||
#endif // _WX_PRIVATE_SOCKETEVTDISPATCH_H_
|
Loading…
Add table
Add a link
Reference in a new issue