summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-29 07:46:56 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-29 07:46:56 +0000
commit982e6e91a7af6be0c4832e5cb443fc554dba8e98 (patch)
tree76ed5c65fba9f6be629e2adeeb5cbd1e58e91343
parent5b045c65427e737096e4a0244bebc3fdf1b1c8ac (diff)
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--win32/ruby.def1
-rw-r--r--win32/win32.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/win32/ruby.def b/win32/ruby.def
index ae4b9d6889..54581882f5 100644
--- a/win32/ruby.def
+++ b/win32/ruby.def
@@ -125,6 +125,7 @@ EXPORTS
mybind
myconnect
myfdset
+ myfdclr
myfdisset
myselect
mygetpeername
diff --git a/win32/win32.h b/win32/win32.h
index 412f8f9278..c44cf73b07 100644
--- a/win32/win32.h
+++ b/win32/win32.h
@@ -176,6 +176,7 @@ extern SOCKET myaccept(SOCKET, struct sockaddr *, int *);
extern int mybind(SOCKET, struct sockaddr *, int);
extern int myconnect(SOCKET, struct sockaddr *, int);
extern void myfdset(int, fd_set*);
+extern void myfdclr(int, fd_set*);
extern int myfdisset(int, fd_set*);
extern long myselect(int, fd_set *, fd_set *, fd_set *, struct timeval *);
extern int mygetpeername(SOCKET, struct sockaddr *, int *);