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
773161f8
Commit
773161f8
authored
Apr 09, 2021
by
Esme Povirk
Committed by
Alexandre Julliard
Apr 12, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub for GetMaximumProcessorGroupCount.
Signed-off-by:
Esme Povirk
<
esme@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8417f634
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
4 deletions
+13
-4
api-ms-win-core-kernel32-legacy-l1-1-0.spec
...legacy-l1-1-0/api-ms-win-core-kernel32-legacy-l1-1-0.spec
+1
-1
api-ms-win-core-kernel32-legacy-l1-1-1.spec
...legacy-l1-1-1/api-ms-win-core-kernel32-legacy-l1-1-1.spec
+1
-1
api-ms-win-downlevel-kernel32-l2-1-0.spec
...kernel32-l2-1-0/api-ms-win-downlevel-kernel32-l2-1-0.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+9
-0
No files found.
dlls/api-ms-win-core-kernel32-legacy-l1-1-0/api-ms-win-core-kernel32-legacy-l1-1-0.spec
View file @
773161f8
...
...
@@ -21,7 +21,7 @@
@ stdcall GetComputerNameW(ptr ptr) kernel32.GetComputerNameW
@ stdcall GetConsoleWindow() kernel32.GetConsoleWindow
@ stub GetDurationFormatEx
@ st
ub
GetMaximumProcessorGroupCount
@ st
dcall GetMaximumProcessorGroupCount() kernel32.
GetMaximumProcessorGroupCount
@ stdcall GetNamedPipeClientProcessId(long ptr) kernel32.GetNamedPipeClientProcessId
@ stdcall GetNamedPipeServerProcessId(long ptr) kernel32.GetNamedPipeServerProcessId
@ stdcall GetShortPathNameA(str ptr long) kernel32.GetShortPathNameA
...
...
dlls/api-ms-win-core-kernel32-legacy-l1-1-1/api-ms-win-core-kernel32-legacy-l1-1-1.spec
View file @
773161f8
...
...
@@ -26,7 +26,7 @@
@ stub GetDurationFormatEx
@ stub GetFileAttributesTransactedW
@ stub GetFirmwareType
@ st
ub
GetMaximumProcessorGroupCount
@ st
dcall GetMaximumProcessorGroupCount() kernel32.
GetMaximumProcessorGroupCount
@ stdcall GetNamedPipeClientProcessId(long ptr) kernel32.GetNamedPipeClientProcessId
@ stdcall GetNamedPipeServerProcessId(long ptr) kernel32.GetNamedPipeServerProcessId
@ stdcall GetNumaAvailableMemoryNodeEx(long ptr) kernel32.GetNumaAvailableMemoryNodeEx
...
...
dlls/api-ms-win-downlevel-kernel32-l2-1-0/api-ms-win-downlevel-kernel32-l2-1-0.spec
View file @
773161f8
...
...
@@ -33,7 +33,7 @@
@ stdcall GetConsoleWindow() kernel32.GetConsoleWindow
@ stub GetDurationFormatEx
@ stdcall GetFirmwareEnvironmentVariableW(wstr wstr ptr long) kernel32.GetFirmwareEnvironmentVariableW
@ st
ub
GetMaximumProcessorGroupCount
@ st
dcall GetMaximumProcessorGroupCount() kernel32.
GetMaximumProcessorGroupCount
@ stdcall GetNamedPipeClientProcessId(long ptr) kernel32.GetNamedPipeClientProcessId
@ stdcall GetNamedPipeServerProcessId(long ptr) kernel32.GetNamedPipeServerProcessId
@ stdcall GetPrivateProfileIntA(str str long str) kernel32.GetPrivateProfileIntA
...
...
dlls/kernel32/kernel32.spec
View file @
773161f8
...
...
@@ -719,7 +719,7 @@
@ stdcall -import GetLongPathNameW(wstr ptr long)
@ stdcall GetMailslotInfo(long ptr ptr ptr ptr)
@ stdcall GetMaximumProcessorCount(long)
# @ stub GetMaximumProcessorGroupCount
@ stdcall GetMaximumProcessorGroupCount()
@ stdcall -import GetModuleFileNameA(long ptr long)
@ stdcall -import GetModuleFileNameW(long ptr long)
@ stdcall -import GetModuleHandleA(str)
...
...
dlls/kernel32/process.c
View file @
773161f8
...
...
@@ -636,6 +636,15 @@ DWORD WINAPI GetMaximumProcessorCount(WORD group)
}
/***********************************************************************
* GetMaximumProcessorGroupCount (KERNEL32.@)
*/
DWORD
WINAPI
GetMaximumProcessorGroupCount
(
void
)
{
FIXME
(
"semi-stub, always returning 1
\n
"
);
return
1
;
}
/***********************************************************************
* GetFirmwareEnvironmentVariableA (KERNEL32.@)
*/
DWORD
WINAPI
GetFirmwareEnvironmentVariableA
(
LPCSTR
name
,
LPCSTR
guid
,
PVOID
buffer
,
DWORD
size
)
...
...
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