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
370db5b4
Commit
370db5b4
authored
Jun 04, 2003
by
Lionel Ulmer
Committed by
Alexandre Julliard
Jun 04, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented a semi-stub for GetProcessPriorityBoost.
parent
3e6b5e57
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
process.c
scheduler/process.c
+13
-0
No files found.
dlls/kernel/kernel32.spec
View file @
370db5b4
...
...
@@ -1002,7 +1002,7 @@
@ stdcall GetDiskFreeSpaceExW (wstr ptr ptr ptr)
@ stdcall GetFileAttributesExA(str long ptr)
@ stdcall GetFileAttributesExW(wstr long ptr)
@ st
ub GetProcessPriorityBoost
@ st
dcall GetProcessPriorityBoost(long ptr)
@ stdcall GetThreadPriorityBoost(long ptr)
@ stdcall InterlockedCompareExchange (ptr long long)
@ stdcall InterlockedExchangeAdd (ptr long )
...
...
scheduler/process.c
View file @
370db5b4
...
...
@@ -1719,6 +1719,19 @@ BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
/***********************************************************************
* GetProcessPriorityBoost (KERNEL32.@)
*/
BOOL
WINAPI
GetProcessPriorityBoost
(
HANDLE
hprocess
,
PBOOL
pDisablePriorityBoost
)
{
FIXME
(
"(%p,%p): semi-stub
\n
"
,
hprocess
,
pDisablePriorityBoost
);
/* Report that no boost is present.. */
*
pDisablePriorityBoost
=
FALSE
;
return
TRUE
;
}
/***********************************************************************
* SetProcessPriorityBoost (KERNEL32.@)
*/
BOOL
WINAPI
SetProcessPriorityBoost
(
HANDLE
hprocess
,
BOOL
disableboost
)
...
...
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