Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
797a746f
Commit
797a746f
authored
Aug 07, 2017
by
Austin English
Committed by
Alexandre Julliard
Aug 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add GetGestureInfo stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
24cea1b7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
user32.spec
dlls/user32/user32.spec
+1
-0
win.c
dlls/user32/win.c
+10
-0
winuser.h
include/winuser.h
+17
-0
No files found.
dlls/user32/user32.spec
View file @
797a746f
...
...
@@ -295,6 +295,7 @@
@ stdcall GetFocus()
@ stdcall GetForegroundWindow()
@ stdcall GetGestureConfig(long long long ptr ptr long)
@ stdcall GetGestureInfo(long ptr)
@ stdcall GetGUIThreadInfo(long ptr)
@ stdcall GetGuiResources(long long)
@ stdcall GetIconInfo(long ptr)
...
...
dlls/user32/win.c
View file @
797a746f
...
...
@@ -4016,3 +4016,13 @@ BOOL WINAPI GetTouchInputInfo(HTOUCHINPUT handle, UINT count, TOUCHINPUT *ptr, i
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL
WINAPI
GetGestureInfo
(
HGESTUREINFO
handle
,
PGESTUREINFO
ptr
)
{
FIXME
(
"(%p %p): stub
\n
"
,
handle
,
ptr
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
include/winuser.h
View file @
797a746f
...
...
@@ -3321,6 +3321,22 @@ typedef struct tagTOUCHINPUT {
}
TOUCHINPUT
,
*
PTOUCHINPUT
;
typedef
TOUCHINPUT
const
*
PCTOUCHINPUT
;
/* Gesture definitions */
DECLARE_HANDLE
(
HGESTUREINFO
);
typedef
struct
tagGESTUREINFO
{
UINT
cbSize
;
DWORD
dwFlags
;
DWORD
dwID
;
HWND
hwndTarget
;
POINTS
ptsLocation
;
DWORD
dwInstanceID
;
DWORD
dwSequenceID
;
ULONGLONG
ullArguments
;
UINT
cbExtraArgs
;
}
GESTUREINFO
,
*
PGESTUREINFO
;
typedef
GESTUREINFO
const
*
PCGESTUREINFO
;
#if defined(_WINGDI_) && !defined(NOGDI)
WINUSERAPI
LONG
WINAPI
ChangeDisplaySettingsA
(
LPDEVMODEA
,
DWORD
);
WINUSERAPI
LONG
WINAPI
ChangeDisplaySettingsW
(
LPDEVMODEW
,
DWORD
);
...
...
@@ -3658,6 +3674,7 @@ 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
GetGestureInfo
(
HGESTUREINFO
,
PGESTUREINFO
);
WINUSERAPI
BOOL
WINAPI
GetGUIThreadInfo
(
DWORD
,
GUITHREADINFO
*
);
WINUSERAPI
DWORD
WINAPI
GetGuiResources
(
HANDLE
,
DWORD
);
WINUSERAPI
BOOL
WINAPI
GetIconInfo
(
HICON
,
PICONINFO
);
...
...
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