diff options
Diffstat (limited to 'src/win/handle.c')
-rw-r--r-- | src/win/handle.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/win/handle.c b/src/win/handle.c index 72b49d9..3915070 100644 --- a/src/win/handle.c +++ b/src/win/handle.c @@ -152,3 +152,8 @@ void uv_close(uv_handle_t* handle, uv_close_cb cb) { int uv_is_closing(const uv_handle_t* handle) { return !!(handle->flags & (UV__HANDLE_CLOSING | UV_HANDLE_CLOSED)); } + + +uv_os_fd_t uv_get_osfhandle(int fd) { + return uv__get_osfhandle(fd); +} |