kernel32: Add GetActiveProcessorGroupCount stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d763aecc24
commit
360e9544bf
|
@ -303,3 +303,12 @@ SIZE_T WINAPI GetLargePageMinimum(void)
|
|||
FIXME("Not implemented on your platform/architecture.\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetActiveProcessorGroupCount (KERNEL32.@)
|
||||
*/
|
||||
WORD WINAPI GetActiveProcessorGroupCount(void)
|
||||
{
|
||||
FIXME("semi-stub, always returning 1\n");
|
||||
return 1;
|
||||
}
|
||||
|
|
|
@ -541,7 +541,7 @@
|
|||
@ stdcall -i386 -private Get16DLLAddress(long str) krnl386.exe16.Get16DLLAddress
|
||||
@ stdcall GetACP()
|
||||
# @ stub GetActiveProcessorCount
|
||||
# @ stub GetActiveProcessorGroupCount
|
||||
@ stdcall GetActiveProcessorGroupCount()
|
||||
# @ stub GetApplicationRecoveryCallback
|
||||
# @ stub GetApplicationRestartSettings
|
||||
@ stdcall GetAtomNameA(long ptr long)
|
||||
|
|
Loading…
Reference in New Issue