Rob Shearman : ws2_32: Add a FIXME for WS_SIO_GET_EXTENSION_FUNCTION_POINTER in WSAIoctl.

Alexandre Julliard julliard at winehq.org
Tue Feb 5 06:34:24 CST 2008


Module: wine
Branch: master
Commit: dfce00677d38967de81beb73eb1529e92be96db7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dfce00677d38967de81beb73eb1529e92be96db7

Author: Rob Shearman <rob at codeweavers.com>
Date:   Mon Feb  4 20:18:42 2008 +0000

ws2_32: Add a FIXME for WS_SIO_GET_EXTENSION_FUNCTION_POINTER in WSAIoctl.

---

 dlls/ws2_32/socket.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index 46083c7..5d6eee3 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -2292,6 +2292,11 @@ INT WINAPI WSAIoctl(SOCKET s,
 	FIXME("SIO_FLUSH: stub.\n");
 	break;
 
+   case WS_SIO_GET_EXTENSION_FUNCTION_POINTER:
+       FIXME("SIO_GET_EXTENSION_FUNCTION_POINTER %s: stub\n", debugstr_guid(lpvInBuffer));
+       WSASetLastError(WSAEOPNOTSUPP);
+       return SOCKET_ERROR;
+
    default:
        FIXME("unsupported WS_IOCTL cmd (%08x)\n", dwIoControlCode);
        WSASetLastError(WSAEOPNOTSUPP);




More information about the wine-cvs mailing list