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");
|
FIXME("Not implemented on your platform/architecture.\n");
|
||||||
return 0;
|
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 -i386 -private Get16DLLAddress(long str) krnl386.exe16.Get16DLLAddress
|
||||||
@ stdcall GetACP()
|
@ stdcall GetACP()
|
||||||
# @ stub GetActiveProcessorCount
|
# @ stub GetActiveProcessorCount
|
||||||
# @ stub GetActiveProcessorGroupCount
|
@ stdcall GetActiveProcessorGroupCount()
|
||||||
# @ stub GetApplicationRecoveryCallback
|
# @ stub GetApplicationRecoveryCallback
|
||||||
# @ stub GetApplicationRestartSettings
|
# @ stub GetApplicationRestartSettings
|
||||||
@ stdcall GetAtomNameA(long ptr long)
|
@ stdcall GetAtomNameA(long ptr long)
|
||||||
|
|
Loading…
Reference in New Issue