Commit 5dca2545 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add stub for QueryMemoryResourceNotification.

parent 6a9f170b
......@@ -873,7 +873,7 @@
@ stdcall QueryFullProcessImageNameA(ptr long ptr ptr)
@ stdcall QueryFullProcessImageNameW(ptr long ptr ptr)
@ stdcall QueryInformationJobObject(long long ptr long ptr)
# @ stub QueryMemoryResourceNotification
@ stdcall QueryMemoryResourceNotification(ptr ptr)
@ stub QueryNumberOfEventLogRecords
@ stub QueryOldestEventLogRecord
@ stdcall QueryPerformanceCounter(ptr)
......
......@@ -2186,6 +2186,15 @@ HANDLE WINAPI CreateMemoryResourceNotification(MEMORY_RESOURCE_NOTIFICATION_TYPE
return NULL;
}
/***********************************************************************
* QueryMemoryResourceNotification (KERNEL32.@)
*/
BOOL WINAPI QueryMemoryResourceNotification(HANDLE rnh, PBOOL rs)
{
FIXME("(%p, %p) stub\n", rnh, rs);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
#ifdef __i386__
......
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