kernel32: Improve GetNumaHighestNodeNumber stub.

This commit is contained in:
Austin English 2014-03-18 10:47:09 -07:00 committed by Alexandre Julliard
parent f123556f07
commit 77bd74fa25

View file

@ -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;
}
/**********************************************************************