Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
6493d6ab
Commit
6493d6ab
authored
Mar 08, 2013
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 08, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add a stub implementation of UserHandleGrantAccess.
parent
18e76792
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
misc.c
dlls/user32/misc.c
+10
-0
user32.spec
dlls/user32/user32.spec
+1
-1
winuser.h
include/winuser.h
+1
-0
No files found.
dlls/user32/misc.c
View file @
6493d6ab
...
...
@@ -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
;
}
dlls/user32/user32.spec
View file @
6493d6ab
...
...
@@ -734,7 +734,7 @@
@ stdcall UpdateWindow(long)
@ stdcall User32InitializeImmEntryTable(ptr)
@ stdcall UserClientDllInitialize(long long ptr) DllMain
@ st
ub UserHandleGrantAccess
@ st
dcall UserHandleGrantAccess(ptr ptr long)
# @ stub UserIsSystemResumeAutomatic
# @ stub UserLpkPSMTextOut
# @ stub UserLpkTabbedTextOut
...
...
include/winuser.h
View file @
6493d6ab
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment