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
913ce1f2
Commit
913ce1f2
authored
Jul 15, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Jul 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend the WSOCK32 warning in certain functions to mention WS2_32 too.
parent
276495e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
handle.c
scheduler/handle.c
+3
-3
No files found.
scheduler/handle.c
View file @
913ce1f2
...
...
@@ -99,7 +99,7 @@ HANDLE WINAPI ConvertToGlobalHandle(HANDLE hSrc)
* SetHandleContext (KERNEL32)
*/
BOOL
WINAPI
SetHandleContext
(
HANDLE
hnd
,
DWORD
context
)
{
FIXME
(
"(%d,%ld), stub.
The external WSOCK32 will not work with WINE, do not use it
.
\n
"
,
hnd
,
context
);
FIXME
(
"(%d,%ld), stub.
In case this got called by WSOCK32/WS2_32: the external WINSOCK DLLs won't work with WINE, don't use them
.
\n
"
,
hnd
,
context
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -108,7 +108,7 @@ BOOL WINAPI SetHandleContext(HANDLE hnd,DWORD context) {
* GetHandleContext (KERNEL32)
*/
DWORD
WINAPI
GetHandleContext
(
HANDLE
hnd
)
{
FIXME
(
"(%d), stub.
The external WSOCK32 will not work with WINE, do not use it
.
\n
"
,
hnd
);
FIXME
(
"(%d), stub.
In case this got called by WSOCK32/WS2_32: the external WINSOCK DLLs won't work with WINE, don't use them
.
\n
"
,
hnd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
...
...
@@ -117,7 +117,7 @@ DWORD WINAPI GetHandleContext(HANDLE hnd) {
* CreateSocketHandle (KERNEL32)
*/
HANDLE
WINAPI
CreateSocketHandle
(
void
)
{
FIXME
(
"(), stub.
The external WSOCK32 will not work with WINE, do not use it
.
\n
"
);
FIXME
(
"(), stub.
In case this got called by WSOCK32/WS2_32: the external WINSOCK DLLs won't work with WINE, don't use them
.
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
INVALID_HANDLE_VALUE
;
}
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