user32: Add a stub for SetGestureConfig.
This commit is contained in:
parent
c229428a14
commit
82392e78b7
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue