kernel32: Add AllocateUserPhysicalPages stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
77a75d74a2
commit
4bfe66e702
|
@ -1483,3 +1483,10 @@ BOOL WINAPI SetSystemFileCacheSize(SIZE_T mincache, SIZE_T maxcache, DWORD flags
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI AllocateUserPhysicalPages(HANDLE process, ULONG_PTR *pages, ULONG_PTR *userarray)
|
||||||
|
{
|
||||||
|
FIXME("stub: %p %p %p\n",process, pages, userarray);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
|
@ -154,7 +154,7 @@
|
||||||
@ stdcall AllocConsole()
|
@ stdcall AllocConsole()
|
||||||
@ stub -i386 AllocLSCallback
|
@ stub -i386 AllocLSCallback
|
||||||
@ stdcall -i386 -private AllocSLCallback(ptr ptr) krnl386.exe16.AllocSLCallback
|
@ stdcall -i386 -private AllocSLCallback(ptr ptr) krnl386.exe16.AllocSLCallback
|
||||||
@ stub AllocateUserPhysicalPages
|
@ stdcall AllocateUserPhysicalPages(ptr ptr ptr)
|
||||||
@ stdcall ApplicationRecoveryFinished(long)
|
@ stdcall ApplicationRecoveryFinished(long)
|
||||||
@ stdcall ApplicationRecoveryInProgress(ptr)
|
@ stdcall ApplicationRecoveryInProgress(ptr)
|
||||||
@ stdcall AreFileApisANSI()
|
@ stdcall AreFileApisANSI()
|
||||||
|
|
Loading…
Reference in New Issue