]>
Commit | Line | Data |
---|---|---|
d533381e DE |
1 | /* ------------------------------------------------------------------------- |
2 | * Project: GSocket (Generic Socket) for WX | |
3 | * Name: gsockmot.c | |
4 | * Purpose: GSocket: X11 part | |
5 | * CVSID: $Id$ | |
6 | * ------------------------------------------------------------------------- */ | |
7 | ||
8 | #include "wx/setup.h" | |
9 | ||
10 | #if wxUSE_SOCKETS | |
11 | ||
12 | #include <stdlib.h> | |
13 | #include "wx/gsocket.h" | |
14 | ||
38bb138f VS |
15 | int _GSocket_GUI_Init(void) |
16 | { | |
17 | return 1; | |
18 | } | |
19 | ||
20 | void _GSocket_GUI_Cleanup(void) | |
21 | { | |
22 | } | |
23 | ||
24 | int _GSocket_GUI_Init_Socket(GSocket *socket) | |
d533381e DE |
25 | { |
26 | return 0; | |
27 | } | |
28 | ||
38bb138f | 29 | void _GSocket_GUI_Destroy_Socket(GSocket *socket) |
d533381e DE |
30 | { |
31 | } | |
32 | ||
33 | void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event) | |
34 | { | |
35 | } | |
36 | ||
37 | void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event) | |
38 | { | |
39 | } | |
40 | ||
41 | void _GSocket_Enable_Events(GSocket *socket) | |
42 | { | |
43 | } | |
44 | ||
45 | void _GSocket_Disable_Events(GSocket *socket) | |
46 | { | |
47 | } | |
48 | ||
49 | #endif // wxUSE_SOCKETS |