kernel32: Add stub for QueryMemoryResourceNotification.
This commit is contained in:
parent
6a9f170b1c
commit
5dca2545f2
|
@ -873,7 +873,7 @@
|
||||||
@ stdcall QueryFullProcessImageNameA(ptr long ptr ptr)
|
@ stdcall QueryFullProcessImageNameA(ptr long ptr ptr)
|
||||||
@ stdcall QueryFullProcessImageNameW(ptr long ptr ptr)
|
@ stdcall QueryFullProcessImageNameW(ptr long ptr ptr)
|
||||||
@ stdcall QueryInformationJobObject(long long ptr long ptr)
|
@ stdcall QueryInformationJobObject(long long ptr long ptr)
|
||||||
# @ stub QueryMemoryResourceNotification
|
@ stdcall QueryMemoryResourceNotification(ptr ptr)
|
||||||
@ stub QueryNumberOfEventLogRecords
|
@ stub QueryNumberOfEventLogRecords
|
||||||
@ stub QueryOldestEventLogRecord
|
@ stub QueryOldestEventLogRecord
|
||||||
@ stdcall QueryPerformanceCounter(ptr)
|
@ stdcall QueryPerformanceCounter(ptr)
|
||||||
|
|
|
@ -2186,6 +2186,15 @@ HANDLE WINAPI CreateMemoryResourceNotification(MEMORY_RESOURCE_NOTIFICATION_TYPE
|
||||||
return NULL;
|
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__
|
#ifdef __i386__
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue