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
12b2d349
Commit
12b2d349
authored
Jul 07, 2023
by
Connor McAdams
Committed by
Alexandre Julliard
Sep 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add UiaHasServerSideProvider stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
cf5e073d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
uia_client.c
dlls/uiautomationcore/uia_client.c
+9
-0
uiautomationcore.spec
dlls/uiautomationcore/uiautomationcore.spec
+1
-1
uiautomationcoreapi.h
include/uiautomationcoreapi.h
+1
-0
No files found.
dlls/uiautomationcore/uia_client.c
View file @
12b2d349
...
...
@@ -2616,6 +2616,15 @@ HRESULT WINAPI UiaGetRootNode(HUIANODE *huianode)
return
UiaNodeFromHandle
(
GetDesktopWindow
(),
huianode
);
}
/***********************************************************************
* UiaHasServerSideProvider (uiautomationcore.@)
*/
BOOL
WINAPI
UiaHasServerSideProvider
(
HWND
hwnd
)
{
FIXME
(
"(%p): stub
\n
"
,
hwnd
);
return
FALSE
;
}
static
HRESULT
get_focused_uia_node
(
HUIANODE
in_node
,
HUIANODE
*
out_node
)
{
struct
uia_node
*
node
=
unsafe_impl_from_IWineUiaNode
((
IWineUiaNode
*
)
in_node
);
...
...
dlls/uiautomationcore/uiautomationcore.spec
View file @
12b2d349
...
...
@@ -71,7 +71,7 @@
@ stub UiaHPatternObjectFromVariant
@ stub UiaHTextRangeFromVariant
@ stdcall UiaHUiaNodeFromVariant(ptr ptr)
@ st
ub UiaHasServerSideProvider
@ st
dcall UiaHasServerSideProvider(long)
@ stdcall UiaHostProviderFromHwnd(long ptr)
#@ stub UiaIAccessibleFromProvider
@ stdcall UiaLookupId(long ptr)
...
...
include/uiautomationcoreapi.h
View file @
12b2d349
...
...
@@ -558,6 +558,7 @@ HRESULT WINAPI UiaAddEvent(HUIANODE huianode, EVENTID event_id, UiaEventCallback
HRESULT
WINAPI
UiaRemoveEvent
(
HUIAEVENT
huiaevent
);
HRESULT
WINAPI
UiaEventAddWindow
(
HUIAEVENT
huiaevent
,
HWND
hwnd
);
HRESULT
WINAPI
UiaEventRemoveWindow
(
HUIAEVENT
huiaevent
,
HWND
hwnd
);
BOOL
WINAPI
UiaHasServerSideProvider
(
HWND
hwnd
);
#ifdef __cplusplus
}
...
...
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