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