kernel32: Fix return type of GetMaximumProcessorGroupCount.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9b834bb8bf
commit
0cd033a07e
|
@ -638,7 +638,7 @@ DWORD WINAPI GetMaximumProcessorCount(WORD group)
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* GetMaximumProcessorGroupCount (KERNEL32.@)
|
* GetMaximumProcessorGroupCount (KERNEL32.@)
|
||||||
*/
|
*/
|
||||||
DWORD WINAPI GetMaximumProcessorGroupCount(void)
|
WORD WINAPI GetMaximumProcessorGroupCount(void)
|
||||||
{
|
{
|
||||||
FIXME("semi-stub, always returning 1\n");
|
FIXME("semi-stub, always returning 1\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue