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
8af93445
Commit
8af93445
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 QueryUmsThreadInformation stub.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e7ff7b5a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+11
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
8af93445
...
...
@@ -1175,7 +1175,7 @@
@ stdcall QueryThreadCycleTime(long ptr)
# @ stub QueryThreadProfiling
# @ stub QueryThreadpoolStackInformation
# @ stub -arch=x86_64 QueryUmsThreadInformation
@ stdcall -arch=x86_64 QueryUmsThreadInformation(ptr long ptr long ptr)
@ stdcall QueryUnbiasedInterruptTime(ptr)
@ stub QueryWin31IniFilesMappedToRegistry
@ stdcall QueueUserAPC(ptr long long)
...
...
dlls/kernel32/process.c
View file @
8af93445
...
...
@@ -4332,6 +4332,17 @@ BOOL WINAPI GetUmsCompletionListEvent(PUMS_COMPLETION_LIST list, HANDLE *event)
return
FALSE
;
}
/***********************************************************************
* QueryUmsThreadInformation (KERNEL32.@)
*/
BOOL
WINAPI
QueryUmsThreadInformation
(
PUMS_CONTEXT
ctx
,
UMS_THREAD_INFO_CLASS
class
,
void
*
buf
,
ULONG
length
,
ULONG
*
ret_length
)
{
FIXME
(
"%p,%08x,%p,%08x,%p: stub
\n
"
,
ctx
,
class
,
buf
,
length
,
ret_length
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* BaseFlushAppcompatCache (KERNEL32.@)
*/
...
...
include/winbase.h
View file @
8af93445
...
...
@@ -2488,6 +2488,7 @@ WINBASEAPI BOOL WINAPI QueryMemoryResourceNotification(HANDLE,PBOOL);
WINBASEAPI
BOOL
WINAPI
QueryPerformanceCounter
(
LARGE_INTEGER
*
);
WINBASEAPI
BOOL
WINAPI
QueryPerformanceFrequency
(
LARGE_INTEGER
*
);
WINBASEAPI
BOOL
WINAPI
QueryThreadCycleTime
(
HANDLE
,
PULONG64
);
WINBASEAPI
BOOL
WINAPI
QueryUmsThreadInformation
(
PUMS_CONTEXT
,
UMS_THREAD_INFO_CLASS
,
PVOID
,
ULONG
,
PULONG
);
WINBASEAPI
DWORD
WINAPI
QueueUserAPC
(
PAPCFUNC
,
HANDLE
,
ULONG_PTR
);
WINBASEAPI
BOOL
WINAPI
QueueUserWorkItem
(
LPTHREAD_START_ROUTINE
,
PVOID
,
ULONG
);
WINBASEAPI
void
WINAPI
RaiseException
(
DWORD
,
DWORD
,
DWORD
,
const
ULONG_PTR
*
);
...
...
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