Commit 6493d6ab authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

user32: Add a stub implementation of UserHandleGrantAccess.

parent 18e76792
......@@ -651,3 +651,13 @@ VOID WINAPI DisableProcessWindowsGhosting(VOID)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return;
}
/**********************************************************************
* UserHandleGrantAccess [USER32.@]
*
*/
BOOL WINAPI UserHandleGrantAccess(HANDLE handle, HANDLE job, BOOL grant)
{
FIXME("(%p,%p,%d): stub\n", handle, job, grant);
return TRUE;
}
......@@ -734,7 +734,7 @@
@ stdcall UpdateWindow(long)
@ stdcall User32InitializeImmEntryTable(ptr)
@ stdcall UserClientDllInitialize(long long ptr) DllMain
@ stub UserHandleGrantAccess
@ stdcall UserHandleGrantAccess(ptr ptr long)
# @ stub UserIsSystemResumeAutomatic
# @ stub UserLpkPSMTextOut
# @ stub UserLpkTabbedTextOut
......
......@@ -3988,6 +3988,7 @@ WINUSERAPI BOOL WINAPI UnregisterClassW(LPCWSTR,HINSTANCE);
WINUSERAPI BOOL WINAPI UnregisterDeviceNotification(HDEVNOTIFY);
WINUSERAPI BOOL WINAPI UnregisterHotKey(HWND,INT);
WINUSERAPI BOOL WINAPI UpdateWindow(HWND);
WINUSERAPI BOOL WINAPI UserHandleGrantAccess(HANDLE,HANDLE,BOOL);
WINUSERAPI UINT WINAPI UserRealizePalette(HDC);
WINUSERAPI BOOL WINAPI ValidateRect(HWND,const RECT*);
WINUSERAPI BOOL WINAPI ValidateRgn(HWND,HRGN);
......
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