mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 12:03:45 +00:00
kernel32: Improve GetNumaHighestNodeNumber stub.
This commit is contained in:
parent
f123556f07
commit
77bd74fa25
1 changed files with 3 additions and 3 deletions
|
@ -3911,9 +3911,9 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI GetNumaHighestNodeNumber(PULONG highestnode)
|
BOOL WINAPI GetNumaHighestNodeNumber(PULONG highestnode)
|
||||||
{
|
{
|
||||||
FIXME("(%p): stub\n", highestnode);
|
*highestnode = 0;
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
FIXME("(%p): semi-stub\n", highestnode);
|
||||||
return FALSE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
Loading…
Reference in a new issue