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
450f96aa
Commit
450f96aa
authored
Apr 22, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CreateSocketHandle,GetHandleContext,SetHandleContext stubs added.
parent
28613d3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
3 deletions
+33
-3
kernel32.spec
relay32/kernel32.spec
+3
-3
handle.c
scheduler/handle.c
+30
-0
No files found.
relay32/kernel32.spec
View file @
450f96aa
...
...
@@ -189,7 +189,7 @@ init MAIN_KernelInit
173 stub CreateRemoteThread
174 stdcall CreateSemaphoreA(ptr long long str) CreateSemaphoreA
175 stdcall CreateSemaphoreW(ptr long long wstr) CreateSemaphoreW
176 st
ub
CreateSocketHandle
176 st
dcall CreateSocketHandle()
CreateSocketHandle
177 stub CreateTapePartition
178 stdcall CreateThread(ptr long ptr long long ptr) CreateThread
179 stdcall CreateToolhelp32Snapshot(long long) CreateToolhelp32Snapshot
...
...
@@ -350,7 +350,7 @@ init MAIN_KernelInit
332 stdcall GetFileType(long) GetFileType
333 stdcall GetFullPathNameA(str long ptr ptr) GetFullPathNameA
334 stdcall GetFullPathNameW(wstr long ptr ptr) GetFullPathNameW
335 st
ub
GetHandleContext
335 st
dcall GetHandleContext(long)
GetHandleContext
336 stdcall GetHandleInformation(long ptr) GetHandleInformation
337 stub GetLSCallbackTarget
338 stub GetLSCallbackTemplate
...
...
@@ -667,7 +667,7 @@ init MAIN_KernelInit
648 stdcall SetFileAttributesW(wstr long) SetFileAttributesW
649 stdcall SetFilePointer(long long ptr long) SetFilePointer
650 stdcall SetFileTime(long ptr ptr ptr) SetFileTime
651 st
ub
SetHandleContext
651 st
dcall SetHandleContext(long long)
SetHandleContext
652 stdcall SetHandleCount(long) SetHandleCount
653 stdcall SetHandleInformation(long long long) SetHandleInformation
654 stdcall SetLastError(long) SetLastError
...
...
scheduler/handle.c
View file @
450f96aa
...
...
@@ -8,7 +8,10 @@
#include <stdio.h>
#include "winbase.h"
#include "server.h"
#include "winerror.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL
(
win32
)
/*********************************************************************
* CloseHandle (KERNEL32.23)
...
...
@@ -95,3 +98,30 @@ HANDLE WINAPI ConvertToGlobalHandle(HANDLE hSrc)
CLIENT_WaitSimpleReply
(
&
reply
,
sizeof
(
reply
),
NULL
);
return
reply
.
handle
;
}
/***********************************************************************
* SetHandleContext (KERNEL32)
*/
BOOL
WINAPI
SetHandleContext
(
HANDLE
hnd
,
DWORD
context
)
{
FIXME
(
win32
,
"(%d,%ld), stub. The external WSOCK32 will not work with WINE, do not use it.
\n
"
,
hnd
,
context
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* GetHandleContext (KERNEL32)
*/
DWORD
WINAPI
GetHandleContext
(
HANDLE
hnd
)
{
FIXME
(
win32
,
"(%d), stub. The external WSOCK32 will not work with WINE, do not use it.
\n
"
,
hnd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* CreateSocketHandle (KERNEL32)
*/
HANDLE
WINAPI
CreateSocketHandle
(
void
)
{
FIXME
(
win32
,
"(), stub. The external WSOCK32 will not work with WINE, do not use it.
\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