Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
418f82b7
Commit
418f82b7
authored
20 years ago
by
Stefan Dösinger
Committed by
Alexandre Julliard
20 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added WSAAddressToStringA/W stubs.
parent
4c801af4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/winsock/socket.c
+22
-0
22 additions, 0 deletions
dlls/winsock/socket.c
dlls/winsock/ws2_32.spec
+2
-2
2 additions, 2 deletions
dlls/winsock/ws2_32.spec
with
24 additions
and
2 deletions
dlls/winsock/socket.c
+
22
−
0
View file @
418f82b7
...
...
@@ -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
;
}
This diff is collapsed.
Click to expand it.
dlls/winsock/ws2_32.spec
+
2
−
2
View file @
418f82b7
...
...
@@ -28,8 +28,8 @@
24 stdcall WSApSetPostRoutine(ptr)
25 stub WPUCompleteOverlappedRequest
26 stdcall WSAAccept(long ptr ptr ptr long)
27 st
ub
WSAAddressToStringA
28 st
ub
WSAAddressToStringW
27 st
dcall
WSAAddressToStringA
(ptr long ptr ptr ptr)
28 st
dcall
WSAAddressToStringW
(ptr long ptr ptr ptr)
29 stdcall WSACloseEvent(long)
30 stdcall WSAConnect(long ptr long ptr ptr ptr ptr)
31 stdcall WSACreateEvent ()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment