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
9023a95e
Commit
9023a95e
authored
Nov 27, 2014
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 27, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add a stub implementation of IsTouchWindow.
parent
a4a48d3f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
misc.c
dlls/user32/misc.c
+10
-1
user32.spec
dlls/user32/user32.spec
+1
-0
winuser.h
include/winuser.h
+1
-0
No files found.
dlls/user32/misc.c
View file @
9023a95e
...
...
@@ -727,7 +727,16 @@ BOOL WINAPI SetGestureConfig( HWND hwnd, DWORD reserved, UINT id, PGESTURECONFIG
{
FIXME
(
"(%p %08x %u %p %u): stub
\n
"
,
hwnd
,
reserved
,
id
,
config
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
return
FALSE
;
}
/**********************************************************************
* IsTouchWindow [USER32.@]
*/
BOOL
WINAPI
IsTouchWindow
(
HWND
hwnd
,
PULONG
flags
)
{
FIXME
(
"(%p %p): stub
\n
"
,
hwnd
,
flags
);
return
FALSE
;
}
static
const
WCHAR
imeW
[]
=
{
'I'
,
'M'
,
'E'
,
0
};
...
...
dlls/user32/user32.spec
View file @
9023a95e
...
...
@@ -445,6 +445,7 @@
@ stdcall IsMenu(long)
@ stdcall IsRectEmpty(ptr)
# @ stub IsServerSideWindow
@ stdcall IsTouchWindow(long ptr)
@ stdcall IsWinEventHookInstalled(long)
@ stdcall IsWindow(long)
@ stdcall IsWindowEnabled(long)
...
...
include/winuser.h
View file @
9023a95e
...
...
@@ -3735,6 +3735,7 @@ WINUSERAPI BOOL WINAPI IsHungAppWindow(HWND);
WINUSERAPI
BOOL
WINAPI
IsIconic
(
HWND
);
WINUSERAPI
BOOL
WINAPI
IsMenu
(
HMENU
);
WINUSERAPI
BOOL
WINAPI
IsRectEmpty
(
const
RECT
*
);
WINUSERAPI
BOOL
WINAPI
IsTouchWindow
(
HWND
,
PULONG
);
WINUSERAPI
BOOL
WINAPI
IsWinEventHookInstalled
(
DWORD
);
WINUSERAPI
BOOL
WINAPI
IsWindow
(
HWND
);
WINUSERAPI
BOOL
WINAPI
IsWindowEnabled
(
HWND
);
...
...
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