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
82392e78
Commit
82392e78
authored
Jun 15, 2014
by
Austin English
Committed by
Alexandre Julliard
Jun 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add a stub for SetGestureConfig.
parent
c229428a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
misc.c
dlls/user32/misc.c
+10
-0
user32.spec
dlls/user32/user32.spec
+1
-0
winuser.h
include/winuser.h
+7
-0
No files found.
dlls/user32/misc.c
View file @
82392e78
...
...
@@ -684,3 +684,13 @@ HPOWERNOTIFY WINAPI RegisterPowerSettingNotification(HANDLE recipient, const GUI
FIXME
(
"(%p,%s,%x): stub
\n
"
,
recipient
,
debugstr_guid
(
guid
),
flags
);
return
NULL
;
}
/**********************************************************************
* SetGestureConfig [USER32.@]
*/
BOOL
WINAPI
SetGestureConfig
(
HWND
hwnd
,
DWORD
reserved
,
UINT
id
,
PGESTURECONFIG
config
,
UINT
size
)
{
FIXME
(
"(%p %08x %u %p %u): stub
\n
"
,
hwnd
,
reserved
,
id
,
config
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
dlls/user32/user32.spec
View file @
82392e78
...
...
@@ -631,6 +631,7 @@
@ stdcall SetDoubleClickTime(long)
@ stdcall SetFocus(long)
@ stdcall SetForegroundWindow(long)
@ stdcall SetGestureConfig(ptr long long ptr long)
@ stdcall SetInternalWindowPos(long long ptr ptr)
@ stdcall SetKeyboardState(ptr)
@ stdcall SetLastErrorEx(long long)
...
...
include/winuser.h
View file @
82392e78
...
...
@@ -628,6 +628,12 @@ typedef struct tagRID_DEVICE_INFO {
#define RIDEV_EXMODE(mode) ((mode) & RIDEV_EXMODEMASK)
typedef
struct
tagGESTURECONFIG
{
DWORD
dwID
;
DWORD
dwWant
;
DWORD
dwBlock
;
}
GESTURECONFIG
,
*
PGESTURECONFIG
;
#define GIDC_ARRIVAL 1
#define GIDC_REMOVAL 2
...
...
@@ -3916,6 +3922,7 @@ WINUSERAPI BOOL WINAPI SetDlgItemTextW(HWND,INT,LPCWSTR);
WINUSERAPI
BOOL
WINAPI
SetDoubleClickTime
(
UINT
);
WINUSERAPI
HWND
WINAPI
SetFocus
(
HWND
);
WINUSERAPI
BOOL
WINAPI
SetForegroundWindow
(
HWND
);
WINUSERAPI
BOOL
WINAPI
SetGestureConfig
(
HWND
,
DWORD
,
UINT
,
PGESTURECONFIG
,
UINT
);
WINUSERAPI
void
WINAPI
SetInternalWindowPos
(
HWND
,
UINT
,
LPRECT
,
LPPOINT
);
WINUSERAPI
BOOL
WINAPI
SetKeyboardState
(
LPBYTE
);
WINUSERAPI
VOID
WINAPI
SetLastErrorEx
(
DWORD
,
DWORD
);
...
...
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