#ifndef __GSOCK_MSW_H
#define __GSOCK_MSW_H
+#ifndef __GSOCKET_STANDALONE__
+#include "wx/setup.h"
+#endif
+
+#if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
+
#ifndef __GSOCKET_STANDALONE__
#include "wx/gsocket.h"
#else
#include "gsocket.h"
#endif
+#if defined(__BORLANDC__)
+#include <windows.h>
+#endif
#include <winsock.h>
-
#ifdef __cplusplus
extern "C" {
#endif
GAddress *m_peer;
GSocketError m_error;
+ /* Attributes */
bool m_non_blocking;
bool m_server;
bool m_stream;
struct timeval m_timeout;
/* Callbacks */
+ GSocketEventFlags m_detected;
GSocketCallback m_cbacks[GSOCK_MAX_EVENT];
char *m_data[GSOCK_MAX_EVENT];
int m_msgnumber;
/* Callbacks */
-void _GSocket_Configure_Callbacks(GSocket *socket);
+void _GSocket_Enable_Events(GSocket *socket);
+void _GSocket_Disable_Events(GSocket *socket);
LRESULT CALLBACK _GSocket_Internal_WinProc(HWND, UINT, WPARAM, LPARAM);
/* GAddress */
}
#endif
+#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
+
#endif /* __GSOCK_MSW_H */