Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
bb4872ba
Commit
bb4872ba
authored
Mar 05, 2018
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add DeleteUmsThreadContext stub.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d4819eea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+10
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
bb4872ba
...
...
@@ -374,7 +374,7 @@
@ stdcall DeleteTimerQueueEx (long long)
@ stdcall DeleteTimerQueueTimer(long long long)
@ stdcall -arch=x86_64 DeleteUmsCompletionList(ptr)
# @ stub -arch=x86_64 DeleteUmsThreadContext
@ stdcall -arch=x86_64 DeleteUmsThreadContext(ptr)
@ stdcall DeleteVolumeMountPointA(str)
@ stdcall DeleteVolumeMountPointW(wstr)
# @ stub -arch=x86_64 DequeueUmsCompletionListItems
...
...
dlls/kernel32/process.c
View file @
bb4872ba
...
...
@@ -4262,6 +4262,16 @@ BOOL WINAPI DeleteUmsCompletionList(PUMS_COMPLETION_LIST list)
return
FALSE
;
}
/***********************************************************************
* DeleteUmsThreadContext (KERNEL32.@)
*/
BOOL
WINAPI
DeleteUmsThreadContext
(
PUMS_CONTEXT
ctx
)
{
FIXME
(
"%p: stub
\n
"
,
ctx
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* BaseFlushAppcompatCache (KERNEL32.@)
*/
...
...
include/winbase.h
View file @
bb4872ba
...
...
@@ -1912,6 +1912,7 @@ WINBASEAPI BOOL WINAPI DeleteTimerQueue(HANDLE);
WINBASEAPI
BOOL
WINAPI
DeleteTimerQueueEx
(
HANDLE
,
HANDLE
);
WINBASEAPI
BOOL
WINAPI
DeleteTimerQueueTimer
(
HANDLE
,
HANDLE
,
HANDLE
);
WINBASEAPI
BOOL
WINAPI
DeleteUmsCompletionList
(
PUMS_COMPLETION_LIST
);
WINBASEAPI
BOOL
WINAPI
DeleteUmsThreadContext
(
PUMS_CONTEXT
);
WINBASEAPI
BOOL
WINAPI
DeleteVolumeMountPointA
(
LPCSTR
);
WINBASEAPI
BOOL
WINAPI
DeleteVolumeMountPointW
(
LPCWSTR
);
#define DeleteVolumeMountPoint WINELIB_NAME_AW(DeleteVolumeMountPoint)
...
...
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