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
ba927e50
Commit
ba927e50
authored
Mar 24, 2023
by
Connor McAdams
Committed by
Alexandre Julliard
Apr 28, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add UiaNodeFromFocus stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
8665935e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
uiautomation.c
dlls/uiautomationcore/tests/uiautomation.c
+0
-0
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/tests/uiautomation.c
View file @
ba927e50
This diff is collapsed.
Click to expand it.
dlls/uiautomationcore/uia_client.c
View file @
ba927e50
...
...
@@ -2436,6 +2436,15 @@ HRESULT WINAPI UiaGetRootNode(HUIANODE *huianode)
}
/***********************************************************************
* UiaNodeFromFocus (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaNodeFromFocus
(
struct
UiaCacheRequest
*
cache_req
,
SAFEARRAY
**
out_req
,
BSTR
*
tree_struct
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
cache_req
,
out_req
,
tree_struct
);
return
E_NOTIMPL
;
}
/***********************************************************************
* UiaNodeRelease (uiautomationcore.@)
*/
BOOL
WINAPI
UiaNodeRelease
(
HUIANODE
huianode
)
...
...
dlls/uiautomationcore/uiautomationcore.spec
View file @
ba927e50
...
...
@@ -76,7 +76,7 @@
#@ stub UiaIAccessibleFromProvider
@ stdcall UiaLookupId(long ptr)
@ stdcall UiaNavigate(ptr long ptr ptr ptr ptr)
@ st
ub UiaNodeFromFocus
@ st
dcall UiaNodeFromFocus(ptr ptr ptr)
@ stdcall UiaNodeFromHandle(long ptr)
@ stub UiaNodeFromPoint
@ stdcall UiaNodeFromProvider(ptr ptr)
...
...
include/uiautomationcoreapi.h
View file @
ba927e50
...
...
@@ -545,6 +545,7 @@ HRESULT WINAPI UiaGetRuntimeId(HUIANODE huianode, SAFEARRAY **runtime_id);
HRESULT
WINAPI
UiaHUiaNodeFromVariant
(
VARIANT
*
in_val
,
HUIANODE
*
huianode
);
HRESULT
WINAPI
UiaNodeFromHandle
(
HWND
hwnd
,
HUIANODE
*
huianode
);
HRESULT
WINAPI
UiaGetRootNode
(
HUIANODE
*
huianode
);
HRESULT
WINAPI
UiaNodeFromFocus
(
struct
UiaCacheRequest
*
cache_req
,
SAFEARRAY
**
out_req
,
BSTR
*
tree_struct
);
HRESULT
WINAPI
UiaDisconnectProvider
(
IRawElementProviderSimple
*
elprov
);
HRESULT
WINAPI
UiaGetUpdatedCache
(
HUIANODE
huianode
,
struct
UiaCacheRequest
*
cache_req
,
enum
NormalizeState
normalize_state
,
struct
UiaCondition
*
normalize_cond
,
SAFEARRAY
**
out_req
,
BSTR
*
tree_struct
);
...
...
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