summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/unixsupport.h
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2002-04-30 15:00:48 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2002-04-30 15:00:48 +0000
commitc98047f62764eab650f7495e50d0e1d63d53ac88 (patch)
tree3f26e1884beacb4fe6042fe60ca2bd7e093c5f79 /otherlibs/win32unix/unixsupport.h
parent044ac150e8b5763047b77757e9144a920fb49a42 (diff)
Meilleure distinction handle/socket. Ajout lockf. Revu rename.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4765 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/unixsupport.h')
-rw-r--r--otherlibs/win32unix/unixsupport.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/otherlibs/win32unix/unixsupport.h b/otherlibs/win32unix/unixsupport.h
index c2c71e4bd..a14731f40 100644
--- a/otherlibs/win32unix/unixsupport.h
+++ b/otherlibs/win32unix/unixsupport.h
@@ -21,10 +21,24 @@
#include "io.h"
#include <direct.h>
#include <process.h>
+#include <sys/types.h>
+#include <winsock.h>
-#define Handle_val(v) (*((HANDLE *) Data_custom_val(v)))
+struct filedescr {
+ union {
+ HANDLE handle;
+ SOCKET socket;
+ } fd;
+ enum { KIND_HANDLE, KIND_SOCKET } kind;
+};
+#define Handle_val(v) (((struct filedescr *) Data_custom_val(v))->fd.handle)
+#define Socket_val(v) (((struct filedescr *) Data_custom_val(v))->fd.socket)
+#define Descr_kind_val(v) (((struct filedescr *) Data_custom_val(v))->kind)
+
+extern value win_alloc_handle_or_socket(HANDLE);
extern value win_alloc_handle(HANDLE);
+extern value win_alloc_socket(SOCKET);
#define Nothing ((value) 0)