Commit 77bd74fa authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Improve GetNumaHighestNodeNumber stub.

parent f123556f
......@@ -3911,9 +3911,9 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK
*/
BOOL WINAPI GetNumaHighestNodeNumber(PULONG highestnode)
{
FIXME("(%p): stub\n", highestnode);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
*highestnode = 0;
FIXME("(%p): semi-stub\n", highestnode);
return TRUE;
}
/**********************************************************************
......
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