ws2_32: Add a FIXME for WS_SIO_GET_EXTENSION_FUNCTION_POINTER in WSAIoctl.

This commit is contained in:
Rob Shearman 2008-02-04 20:18:42 +00:00 committed by Alexandre Julliard
parent 44581af935
commit dfce00677d
1 changed files with 5 additions and 0 deletions

View File

@ -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);