Commit 1344aec6 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Stub a few of the numa functions.

parent aa34b2fb
...@@ -568,9 +568,9 @@ ...@@ -568,9 +568,9 @@
@ stub GetNextVDMCommand @ stub GetNextVDMCommand
@ stub GetNlsSectionName @ stub GetNlsSectionName
# @ stub GetNumaAvailableMemory # @ stub GetNumaAvailableMemory
# @ stub GetNumaAvailableMemoryNode @ stdcall GetNumaAvailableMemoryNode(long ptr)
# @ stub GetNumaHighestNodeNumber @ stdcall GetNumaHighestNodeNumber(ptr)
# @ stub GetNumaNodeProcessorMask @ stdcall GetNumaNodeProcessorMask(long ptr)
# @ stub GetNumaProcessorMap # @ stub GetNumaProcessorMap
# @ stub GetNumaProcessorNode # @ stub GetNumaProcessorNode
@ stdcall GetNumberFormatA(long long str ptr ptr long) @ stdcall GetNumberFormatA(long long str ptr ptr long)
......
...@@ -3783,3 +3783,33 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK ...@@ -3783,3 +3783,33 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return E_FAIL; return E_FAIL;
} }
/**********************************************************************
* GetNumaHighestNodeNumber (KERNEL32.@)
*/
BOOL WINAPI GetNumaHighestNodeNumber(PULONG highestnode)
{
FIXME("(%p): stub\n", highestnode);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/**********************************************************************
* GetNumaNodeProcessorMask (KERNEL32.@)
*/
BOOL WINAPI GetNumaNodeProcessorMask(UCHAR node, PULONGLONG mask)
{
FIXME("(%c %p): stub\n", node, mask);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/**********************************************************************
* GetNumaAvailableMemoryNode (KERNEL32.@)
*/
BOOL WINAPI GetNumaAvailableMemoryNode(UCHAR node, PULONGLONG available_bytes)
{
FIXME("(%c %p): stub\n", node, available_bytes);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
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