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
8da21e08
Commit
8da21e08
authored
Oct 04, 2021
by
Rémi Bernon
Committed by
Alexandre Julliard
Nov 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Move touch related functions to input.c.
parent
34099bba
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
105 additions
and
79 deletions
+105
-79
input.c
dlls/user32/input.c
+103
-0
misc.c
dlls/user32/misc.c
+0
-29
user32.spec
dlls/user32/user32.spec
+2
-0
win.c
dlls/user32/win.c
+0
-50
No files found.
dlls/user32/input.c
View file @
8da21e08
...
...
@@ -653,3 +653,106 @@ LRESULT WINAPI DefRawInputProc( RAWINPUT **data, INT data_count, UINT header_siz
return
header_size
==
sizeof
(
RAWINPUTHEADER
)
?
0
:
-
1
;
}
/*****************************************************************************
* CloseTouchInputHandle (USER32.@)
*/
BOOL
WINAPI
CloseTouchInputHandle
(
HTOUCHINPUT
handle
)
{
FIXME
(
"handle %p stub!
\n
"
,
handle
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* GetTouchInputInfo (USER32.@)
*/
BOOL
WINAPI
GetTouchInputInfo
(
HTOUCHINPUT
handle
,
UINT
count
,
TOUCHINPUT
*
ptr
,
int
size
)
{
FIXME
(
"handle %p, count %u, ptr %p, size %u stub!
\n
"
,
handle
,
count
,
ptr
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* IsTouchWindow (USER32.@)
*/
BOOL
WINAPI
IsTouchWindow
(
HWND
hwnd
,
ULONG
*
flags
)
{
FIXME
(
"hwnd %p, flags %p stub!
\n
"
,
hwnd
,
flags
);
return
FALSE
;
}
/*****************************************************************************
* RegisterTouchWindow (USER32.@)
*/
BOOL
WINAPI
RegisterTouchWindow
(
HWND
hwnd
,
ULONG
flags
)
{
FIXME
(
"hwnd %p, flags %#lx stub!
\n
"
,
hwnd
,
flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* UnregisterTouchWindow (USER32.@)
*/
BOOL
WINAPI
UnregisterTouchWindow
(
HWND
hwnd
)
{
FIXME
(
"hwnd %p stub!
\n
"
,
hwnd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL
WINAPI
CloseGestureInfoHandle
(
HGESTUREINFO
handle
)
{
FIXME
(
"handle %p stub!
\n
"
,
handle
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL
WINAPI
GetGestureExtraArgs
(
HGESTUREINFO
handle
,
UINT
count
,
BYTE
*
args
)
{
FIXME
(
"handle %p, count %u, args %p stub!
\n
"
,
handle
,
count
,
args
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL
WINAPI
GetGestureInfo
(
HGESTUREINFO
handle
,
GESTUREINFO
*
ptr
)
{
FIXME
(
"handle %p, ptr %p stub!
\n
"
,
handle
,
ptr
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* GetGestureConfig (USER32.@)
*/
BOOL
WINAPI
GetGestureConfig
(
HWND
hwnd
,
DWORD
reserved
,
DWORD
flags
,
UINT
*
count
,
GESTURECONFIG
*
config
,
UINT
size
)
{
FIXME
(
"handle %p, reserved %#lx, flags %#lx, count %p, config %p, size %u stub!
\n
"
,
hwnd
,
reserved
,
flags
,
count
,
config
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* SetGestureConfig (USER32.@)
*/
BOOL
WINAPI
SetGestureConfig
(
HWND
hwnd
,
DWORD
reserved
,
UINT
count
,
GESTURECONFIG
*
config
,
UINT
size
)
{
FIXME
(
"handle %p, reserved %#lx, count %u, config %p, size %u stub!
\n
"
,
hwnd
,
reserved
,
count
,
config
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/user32/misc.c
View file @
8da21e08
...
...
@@ -440,35 +440,6 @@ BOOL WINAPI UnregisterSuspendResumeNotification(HPOWERNOTIFY handle)
return
TRUE
;
}
/*****************************************************************************
* GetGestureConfig (USER32.@)
*/
BOOL
WINAPI
GetGestureConfig
(
HWND
hwnd
,
DWORD
reserved
,
DWORD
flags
,
UINT
*
count
,
GESTURECONFIG
*
config
,
UINT
size
)
{
FIXME
(
"(%p %08lx %08lx %p %p %u): stub
\n
"
,
hwnd
,
reserved
,
flags
,
count
,
config
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* SetGestureConfig [USER32.@]
*/
BOOL
WINAPI
SetGestureConfig
(
HWND
hwnd
,
DWORD
reserved
,
UINT
id
,
PGESTURECONFIG
config
,
UINT
size
)
{
FIXME
(
"(%p %08lx %u %p %u): stub
\n
"
,
hwnd
,
reserved
,
id
,
config
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* IsTouchWindow [USER32.@]
*/
BOOL
WINAPI
IsTouchWindow
(
HWND
hwnd
,
PULONG
flags
)
{
FIXME
(
"(%p %p): stub
\n
"
,
hwnd
,
flags
);
return
FALSE
;
}
/**********************************************************************
* IsWindowRedirectedForPrint [USER32.@]
*/
...
...
dlls/user32/user32.spec
View file @
8da21e08
...
...
@@ -76,6 +76,7 @@
@ stdcall CloseClipboard() NtUserCloseClipboard
@ stdcall CloseDesktop(long) NtUserCloseDesktop
@ stdcall CloseTouchInputHandle(long)
@ stdcall CloseGestureInfoHandle(long)
@ stdcall CloseWindow(long)
@ stdcall CloseWindowStation(long) NtUserCloseWindowStation
@ stdcall CopyAcceleratorTableA(long ptr long)
...
...
@@ -304,6 +305,7 @@
@ stdcall GetFocus()
@ stdcall GetForegroundWindow() NtUserGetForegroundWindow
@ stdcall GetGestureConfig(long long long ptr ptr long)
@ stdcall GetGestureExtraArgs(long long ptr)
@ stdcall GetGestureInfo(long ptr)
@ stdcall GetGUIThreadInfo(long ptr) NtUserGetGUIThreadInfo
@ stdcall GetGuiResources(long long)
...
...
dlls/user32/win.c
View file @
8da21e08
...
...
@@ -1480,56 +1480,6 @@ LONG_PTR WINAPI SetWindowLongPtrA( HWND hwnd, INT offset, LONG_PTR newval )
#endif
/* _WIN64 */
/*****************************************************************************
* RegisterTouchWindow (USER32.@)
*/
BOOL
WINAPI
RegisterTouchWindow
(
HWND
hwnd
,
ULONG
flags
)
{
FIXME
(
"(%p %08lx): stub
\n
"
,
hwnd
,
flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* UnregisterTouchWindow (USER32.@)
*/
BOOL
WINAPI
UnregisterTouchWindow
(
HWND
hwnd
)
{
FIXME
(
"(%p): stub
\n
"
,
hwnd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* CloseTouchInputHandle (USER32.@)
*/
BOOL
WINAPI
CloseTouchInputHandle
(
HTOUCHINPUT
handle
)
{
FIXME
(
"(%p): stub
\n
"
,
handle
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*****************************************************************************
* GetTouchInputInfo (USER32.@)
*/
BOOL
WINAPI
GetTouchInputInfo
(
HTOUCHINPUT
handle
,
UINT
count
,
TOUCHINPUT
*
ptr
,
int
size
)
{
FIXME
(
"(%p %u %p %u): stub
\n
"
,
handle
,
count
,
ptr
,
size
);
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
;
}
/*****************************************************************************
* GetWindowDisplayAffinity (USER32.@)
*/
BOOL
WINAPI
GetWindowDisplayAffinity
(
HWND
hwnd
,
DWORD
*
affinity
)
...
...
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