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
05e2d3b4
Commit
05e2d3b4
authored
Oct 24, 1998
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LoadLibraryExW spec added (function was there).
SetProcessPriorityBoost stub added.
parent
c9e19500
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
kernel32.spec
relay32/kernel32.spec
+3
-3
process.c
scheduler/process.c
+10
-1
No files found.
relay32/kernel32.spec
View file @
05e2d3b4
...
...
@@ -510,8 +510,8 @@ type win32
493 stdcall LCMapStringW(long long wstr long ptr long) LCMapString32W
494 stdcall LeaveCriticalSection(ptr) LeaveCriticalSection
495 stdcall LoadLibraryA(str) LoadLibrary32A
496 stdcall LoadLibraryExA(str long long) LoadLibraryEx32A
497 st
ub LoadLibraryEx
W
496 stdcall LoadLibraryExA(
str long long) LoadLibraryEx32A
497 st
dcall LoadLibraryExW(wstr long long) LoadLibraryEx32
W
498 stdcall LoadLibraryW(wstr) LoadLibrary32W
499 stdcall LoadModule(str ptr) LoadModule32
500 stdcall LoadResource(long long) LoadResource32
...
...
@@ -905,7 +905,7 @@ type win32
888 stub SetConsoleInputExeNameA
889 stub SetConsoleInputExeNameW
890 stub SetProcessAffinityMask
891 st
ub
SetProcessPriorityBoost
891 st
dcall SetProcessPriorityBoost(long long)
SetProcessPriorityBoost
892 stub SetThreadIdealProcessor
893 stub SetThreadPriorityBoost
894 stub SetWaitableTimer
...
...
scheduler/process.c
View file @
05e2d3b4
...
...
@@ -697,6 +697,16 @@ BOOL32 WINAPI SetProcessShutdownParameters(DWORD level,DWORD flags)
}
/***********************************************************************
* SetProcessPriorityBoost (KERNEL32)
*/
BOOL32
WINAPI
SetProcessPriorityBoost
(
HANDLE32
hprocess
,
BOOL32
disableboost
)
{
FIXME
(
process
,
"(%d,%d): stub
\n
"
,
hprocess
,
disableboost
);
/* Say we can do it. I doubt the program will notice that we don't. */
return
TRUE
;
}
/***********************************************************************
* ReadProcessMemory (KERNEL32)
* FIXME: check this, if we ever run win32 binaries in different addressspaces
* ... and add a sizecheck
...
...
@@ -853,4 +863,3 @@ void PROCESS_ResumeOtherThreads(void)
SYSTEM_UNLOCK
();
}
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