Commit 360e9544 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add GetActiveProcessorGroupCount stub.

parent d763aecc
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment