kernel32: Add stub for QueryMemoryResourceNotification.

oldstable
Austin English 2010-06-28 15:28:59 -05:00 committed by Alexandre Julliard
parent 6a9f170b1c
commit 5dca2545f2
2 changed files with 10 additions and 1 deletions

View File

@ -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)

View File

@ -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__