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
45e6dfc1
Commit
45e6dfc1
authored
Jan 26, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Jan 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Stub NtUserGetPointerInfoList syscall.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53847
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=51537
parent
1f2e7228
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
1 deletion
+28
-1
input.c
dlls/win32u/input.c
+11
-0
syscall.c
dlls/win32u/syscall.c
+1
-0
win32u.spec
dlls/win32u/win32u.spec
+1
-1
syscall.h
dlls/wow64win/syscall.h
+1
-0
user.c
dlls/wow64win/user.c
+14
-0
No files found.
dlls/win32u/input.c
View file @
45e6dfc1
...
...
@@ -2174,6 +2174,17 @@ BOOL WINAPI NtUserIsMouseInPointerEnabled(void)
return
FALSE
;
}
/**********************************************************************
* NtUserGetPointerInfoList (win32u.@)
*/
BOOL
WINAPI
NtUserGetPointerInfoList
(
UINT32
id
,
POINTER_INPUT_TYPE
type
,
UINT_PTR
unk0
,
UINT_PTR
unk1
,
SIZE_T
size
,
UINT32
*
entry_count
,
UINT32
*
pointer_count
,
void
*
pointer_info
)
{
FIXME
(
"id %#x, type %#x, unk0 %#zx, unk1 %#zx, size %#zx, entry_count %p, pointer_count %p, pointer_info %p stub!
\n
"
,
id
,
(
int
)
type
,
unk0
,
unk1
,
(
size_t
)
size
,
entry_count
,
pointer_count
,
pointer_info
);
RtlSetLastWin32Error
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
HWND
get_shell_window
(
void
)
{
...
...
dlls/win32u/syscall.c
View file @
45e6dfc1
...
...
@@ -193,6 +193,7 @@ static void * const syscalls[] =
NtUserGetMouseMovePointsEx
,
NtUserGetObjectInformation
,
NtUserGetOpenClipboardWindow
,
NtUserGetPointerInfoList
,
NtUserGetPriorityClipboardFormat
,
NtUserGetProcessDpiAwarenessContext
,
NtUserGetProcessWindowStation
,
...
...
dlls/win32u/win32u.spec
View file @
45e6dfc1
...
...
@@ -971,7 +971,7 @@
@ stub NtUserGetPointerDeviceRects
@ stub NtUserGetPointerDevices
@ stub NtUserGetPointerFrameTimes
@ st
ub NtUserGetPointerInfoList
@ st
dcall -syscall NtUserGetPointerInfoList(long long long long long ptr ptr ptr)
@ stub NtUserGetPointerInputTransform
@ stub NtUserGetPointerProprietaryId
@ stub NtUserGetPointerType
...
...
dlls/wow64win/syscall.h
View file @
45e6dfc1
...
...
@@ -179,6 +179,7 @@
SYSCALL_ENTRY( NtUserGetMouseMovePointsEx ) \
SYSCALL_ENTRY( NtUserGetObjectInformation ) \
SYSCALL_ENTRY( NtUserGetOpenClipboardWindow ) \
SYSCALL_ENTRY( NtUserGetPointerInfoList ) \
SYSCALL_ENTRY( NtUserGetPriorityClipboardFormat ) \
SYSCALL_ENTRY( NtUserGetProcessDpiAwarenessContext ) \
SYSCALL_ENTRY( NtUserGetProcessWindowStation ) \
...
...
dlls/wow64win/user.c
View file @
45e6dfc1
...
...
@@ -2246,6 +2246,20 @@ NTSTATUS WINAPI wow64_NtUserGetOpenClipboardWindow( UINT *args )
return
HandleToUlong
(
NtUserGetOpenClipboardWindow
()
);
}
NTSTATUS
WINAPI
wow64_NtUserGetPointerInfoList
(
UINT
*
args
)
{
UINT
id
=
get_ulong
(
&
args
);
UINT
type
=
get_ulong
(
&
args
);
UINT
unk0
=
get_ulong
(
&
args
);
UINT
unk1
=
get_ulong
(
&
args
);
UINT
size
=
get_ulong
(
&
args
);
void
*
entry_count
=
get_ptr
(
&
args
);
void
*
pointer_count
=
get_ptr
(
&
args
);
void
*
pointer_info
=
get_ptr
(
&
args
);
return
NtUserGetPointerInfoList
(
id
,
type
,
unk0
,
unk1
,
size
,
entry_count
,
pointer_count
,
pointer_info
);
}
NTSTATUS
WINAPI
wow64_NtUserGetPriorityClipboardFormat
(
UINT
*
args
)
{
UINT
*
list
=
get_ptr
(
&
args
);
...
...
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