]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/stubs/gsockno.c
Fixed broken compilation due to Ove's last nice changes :-(
[wxWidgets.git] / src / stubs / gsockno.c
... / ...
CommitLineData
1/* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket) for WX
3 * Name: gsockno.c
4 * Purpose: GSocket stub GUI file
5 * CVSID: $Id$
6 * -------------------------------------------------------------------------
7 */
8#include <stdlib.h>
9#include "gsocket.h"
10
11void _GSocket_GUI_Init(GSocket *socket)
12{
13}
14
15void _GSocket_GUI_Destroy(GSocket *socket)
16{
17}
18
19void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event)
20{
21}
22
23void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event)
24{
25}
26
27unsigned long GSocket_GetEventID(GSocket *socket)
28{
29 return 0;
30}
31
32void GSocket_DoEvent(unsigned long evt_id)
33{
34}