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
629ced15
Commit
629ced15
authored
Aug 31, 2021
by
Guillaume Charifi
Committed by
Alexandre Julliard
Sep 01, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Add stub for SetProcessGroupAffinity().
Signed-off-by:
Guillaume Charifi
<
guillaume.charifi@sfr.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
35c45857
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
process.c
dlls/kernelbase/process.c
+12
-0
No files found.
dlls/kernelbase/kernelbase.spec
View file @
629ced15
...
...
@@ -1460,7 +1460,7 @@
@ stdcall SetPrivateObjectSecurityEx(long ptr ptr long ptr long)
@ stdcall SetProcessAffinityUpdateMode(long long)
# @ stub SetProcessDefaultCpuSets
# @ stub SetProcessGroupAffinity
@ stdcall SetProcessGroupAffinity(long ptr ptr)
# @ stub SetProcessInformation
@ stdcall SetProcessMitigationPolicy(long ptr long)
@ stdcall SetProcessPreferredUILanguages(long ptr ptr)
...
...
dlls/kernelbase/process.c
View file @
629ced15
...
...
@@ -1133,6 +1133,18 @@ BOOL WINAPI DECLSPEC_HOTPATCH SetProcessAffinityUpdateMode( HANDLE process, DWOR
}
/***********************************************************************
* SetProcessGroupAffinity (kernelbase.@)
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
SetProcessGroupAffinity
(
HANDLE
process
,
const
GROUP_AFFINITY
*
new
,
GROUP_AFFINITY
*
old
)
{
FIXME
(
"(%p,%p,%p): stub
\n
"
,
process
,
new
,
old
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* SetProcessMitigationPolicy (kernelbase.@)
*/
...
...
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