]> git.saurik.com Git - wxWidgets.git/blob - src/cocoa/gsockcocoa.c
Provide NSAutoreleasePool instances during initialization
[wxWidgets.git] / src / cocoa / gsockcocoa.c
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
15 int _GSocket_GUI_Init(GSocket *socket)
16 {
17 return 0;
18 }
19
20 void _GSocket_GUI_Destroy(GSocket *socket)
21 {
22 }
23
24 void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event)
25 {
26 }
27
28 void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event)
29 {
30 }
31
32 void _GSocket_Enable_Events(GSocket *socket)
33 {
34 }
35
36 void _GSocket_Disable_Events(GSocket *socket)
37 {
38 }
39
40 #endif // wxUSE_SOCKETS