Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
df710826
Commit
df710826
authored
May 08, 2010
by
Mike Kaplinskiy
Committed by
Alexandre Julliard
May 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Improve SIO_GET_EXTENSION_FUNCTION_POINTER stub.
parent
db1f5d5f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
socket.c
dlls/ws2_32/socket.c
+45
-0
No files found.
dlls/ws2_32/socket.c
View file @
df710826
...
...
@@ -2706,9 +2706,54 @@ INT WINAPI WSAIoctl(SOCKET s,
break
;
case
WS_SIO_GET_EXTENSION_FUNCTION_POINTER
:
{
static
const
GUID
connectex_guid
=
WSAID_CONNECTEX
;
static
const
GUID
disconnectex_guid
=
WSAID_DISCONNECTEX
;
static
const
GUID
acceptex_guid
=
WSAID_ACCEPTEX
;
static
const
GUID
getaccepexsockaddrs_guid
=
WSAID_GETACCEPTEXSOCKADDRS
;
static
const
GUID
transmitfile_guid
=
WSAID_TRANSMITFILE
;
static
const
GUID
transmitpackets_guid
=
WSAID_TRANSMITPACKETS
;
static
const
GUID
wsarecvmsg_guid
=
WSAID_WSARECVMSG
;
static
const
GUID
wsasendmsg_guid
=
WSAID_WSASENDMSG
;
if
(
IsEqualGUID
(
&
connectex_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented ConnectEx
\n
"
);
}
else
if
(
IsEqualGUID
(
&
disconnectex_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented DisconnectEx
\n
"
);
}
else
if
(
IsEqualGUID
(
&
acceptex_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented AcceptEx
\n
"
);
}
else
if
(
IsEqualGUID
(
&
getaccepexsockaddrs_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented GetAcceptExSockaddrs
\n
"
);
}
else
if
(
IsEqualGUID
(
&
transmitfile_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented TransmitFile
\n
"
);
}
else
if
(
IsEqualGUID
(
&
transmitpackets_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented TransmitPackets
\n
"
);
}
else
if
(
IsEqualGUID
(
&
wsarecvmsg_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented WSARecvMsg
\n
"
);
}
else
if
(
IsEqualGUID
(
&
wsasendmsg_guid
,
lpvInBuffer
)
)
{
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented WSASendMsg
\n
"
);
}
else
FIXME
(
"SIO_GET_EXTENSION_FUNCTION_POINTER %s: stub
\n
"
,
debugstr_guid
(
lpvInBuffer
));
WSASetLastError
(
WSAEOPNOTSUPP
);
return
SOCKET_ERROR
;
}
case
WS_SIO_KEEPALIVE_VALS
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment