]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/gsockcocoa.c
New default configuration is debug/static
[wxWidgets.git] / src / cocoa / gsockcocoa.c
CommitLineData
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
15int _GSocket_GUI_Init(void)
16{
17 return 1;
18}
19
20void _GSocket_GUI_Cleanup(void)
21{
22}
23
24int _GSocket_GUI_Init_Socket(GSocket *socket)
d533381e
DE
25{
26 return 0;
27}
28
38bb138f 29void _GSocket_GUI_Destroy_Socket(GSocket *socket)
d533381e
DE
30{
31}
32
33void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event)
34{
35}
36
37void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event)
38{
39}
40
41void _GSocket_Enable_Events(GSocket *socket)
42{
43}
44
45void _GSocket_Disable_Events(GSocket *socket)
46{
47}
48
49#endif // wxUSE_SOCKETS