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
0cb983f8
Commit
0cb983f8
authored
Mar 07, 2016
by
Austin English
Committed by
Alexandre Julliard
Mar 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add GetGestureConfig stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2dc49eee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
misc.c
dlls/user32/misc.c
+10
-0
user32.spec
dlls/user32/user32.spec
+1
-0
winuser.h
include/winuser.h
+1
-0
No files found.
dlls/user32/misc.c
View file @
0cb983f8
...
...
@@ -729,6 +729,16 @@ BOOL WINAPI UnregisterPowerSettingNotification(HPOWERNOTIFY handle)
return
TRUE
;
}
/*****************************************************************************
* GetGestureConfig (USER32.@)
*/
BOOL
WINAPI
GetGestureConfig
(
HWND
hwnd
,
DWORD
reserved
,
DWORD
flags
,
UINT
*
count
,
GESTURECONFIG
*
config
,
UINT
size
)
{
FIXME
(
"(%p %08x %08x %p %p %u): stub
\n
"
,
hwnd
,
reserved
,
flags
,
count
,
config
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* SetGestureConfig [USER32.@]
*/
...
...
dlls/user32/user32.spec
View file @
0cb983f8
...
...
@@ -291,6 +291,7 @@
@ stdcall GetDoubleClickTime()
@ stdcall GetFocus()
@ stdcall GetForegroundWindow()
@ stdcall GetGestureConfig(long long long ptr ptr long)
@ stdcall GetGUIThreadInfo(long ptr)
@ stdcall GetGuiResources(long long)
@ stdcall GetIconInfo(long ptr)
...
...
include/winuser.h
View file @
0cb983f8
...
...
@@ -3605,6 +3605,7 @@ WINUSERAPI UINT WINAPI GetDlgItemTextW(HWND,INT,LPWSTR,INT);
WINUSERAPI
UINT
WINAPI
GetDoubleClickTime
(
void
);
WINUSERAPI
HWND
WINAPI
GetFocus
(
void
);
WINUSERAPI
HWND
WINAPI
GetForegroundWindow
(
void
);
WINUSERAPI
BOOL
WINAPI
GetGestureConfig
(
HWND
,
DWORD
,
DWORD
,
UINT
*
,
GESTURECONFIG
*
,
UINT
);
WINUSERAPI
BOOL
WINAPI
GetGUIThreadInfo
(
DWORD
,
GUITHREADINFO
*
);
WINUSERAPI
BOOL
WINAPI
GetIconInfo
(
HICON
,
PICONINFO
);
WINUSERAPI
BOOL
WINAPI
GetIconInfoExA
(
HICON
,
ICONINFOEXA
*
);
...
...
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