Added WSAAddressToStringA/W stubs.
This commit is contained in:
parent
4c801af496
commit
418f82b76f
|
@ -3846,3 +3846,25 @@ INT WINAPI WSCUnInstallNameSpace( LPGUID lpProviderId )
|
|||
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
INT WINAPI WSAAddressToStringA(LPSOCKADDR lpsaAddress,
|
||||
DWORD dwAddressLenght,
|
||||
LPWSAPROTOCOL_INFOA lpProtocolInfo,
|
||||
LPSTR lpszAddressString,
|
||||
LPDWORD lpdwAddressStringLength)
|
||||
{
|
||||
FIXME("Stub!");
|
||||
WSASetLastError(WSAENOBUFS);
|
||||
return SOCKET_ERROR;
|
||||
}
|
||||
|
||||
INT WINAPI WSAAddressToStringW(LPSOCKADDR lpsaAddress,
|
||||
DWORD dwAddressLenght,
|
||||
LPWSAPROTOCOL_INFOW lpProtocolInfo,
|
||||
LPWSTR lpszAddressString,
|
||||
LPDWORD lpdwAddressStringLength)
|
||||
{
|
||||
FIXME("Stub!");
|
||||
WSASetLastError(WSAENOBUFS);
|
||||
return SOCKET_ERROR;
|
||||
}
|
||||
|
|
|
@ -28,8 +28,8 @@
|
|||
24 stdcall WSApSetPostRoutine(ptr)
|
||||
25 stub WPUCompleteOverlappedRequest
|
||||
26 stdcall WSAAccept(long ptr ptr ptr long)
|
||||
27 stub WSAAddressToStringA
|
||||
28 stub WSAAddressToStringW
|
||||
27 stdcall WSAAddressToStringA(ptr long ptr ptr ptr)
|
||||
28 stdcall WSAAddressToStringW(ptr long ptr ptr ptr)
|
||||
29 stdcall WSACloseEvent(long)
|
||||
30 stdcall WSAConnect(long ptr long ptr ptr ptr ptr)
|
||||
31 stdcall WSACreateEvent ()
|
||||
|
|
Loading…
Reference in New Issue