[mini] Add new JIT flag JIT_FLAG_DISCARD_RESULTS to reduce the noise when profiling...
[mono.git] / mono / io-layer / socket-private.h
index 438db6f23cfbd03b6aed16f657e7e22ed5623478..31bbfe33c89c995c8eaed0b5428b78268b362b1e 100644 (file)
 #include <config.h>
 #include <glib.h>
 
-extern struct _WapiHandleOps _wapi_socket_ops;
+#include "wapi-private.h"
 
 struct _WapiHandle_socket
 {
-       int dummy;
+       int domain;
+       int type;
+       int protocol;
+       int saved_error;
+       int still_readable;
 };
 
+void
+_wapi_socket_init (void);
+
 #endif /* _WAPI_SOCKET_PRIVATE_H_ */