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
af0c9d0b
Commit
af0c9d0b
authored
Aug 26, 2022
by
Connor McAdams
Committed by
Alexandre Julliard
Nov 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add UiaFind stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
7e60043f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
1 deletion
+20
-1
uiautomation.c
dlls/uiautomationcore/tests/uiautomation.c
+0
-0
uia_client.c
dlls/uiautomationcore/uia_client.c
+10
-0
uiautomationcore.spec
dlls/uiautomationcore/uiautomationcore.spec
+1
-1
uiautomationcoreapi.h
include/uiautomationcoreapi.h
+9
-0
No files found.
dlls/uiautomationcore/tests/uiautomation.c
View file @
af0c9d0b
This diff is collapsed.
Click to expand it.
dlls/uiautomationcore/uia_client.c
View file @
af0c9d0b
...
...
@@ -2559,3 +2559,13 @@ HRESULT WINAPI UiaNavigate(HUIANODE huianode, enum NavigateDirection dir, struct
return
hr
;
}
/***********************************************************************
* UiaFind (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaFind
(
HUIANODE
huianode
,
struct
UiaFindParams
*
find_params
,
struct
UiaCacheRequest
*
cache_req
,
SAFEARRAY
**
out_req
,
SAFEARRAY
**
out_offsets
,
SAFEARRAY
**
out_tree_structs
)
{
FIXME
(
"(%p, %p, %p, %p, %p, %p): stub
\n
"
,
huianode
,
find_params
,
cache_req
,
out_req
,
out_offsets
,
out_tree_structs
);
return
E_NOTIMPL
;
}
dlls/uiautomationcore/uiautomationcore.spec
View file @
af0c9d0b
...
...
@@ -59,7 +59,7 @@
@ stdcall UiaDisconnectProvider(ptr)
@ stub UiaEventAddWindow
@ stub UiaEventRemoveWindow
@ st
ub UiaFind
@ st
dcall UiaFind(ptr ptr ptr ptr ptr ptr)
@ stub UiaGetErrorDescription
@ stub UiaGetPatternProvider
@ stdcall UiaGetPropertyValue(ptr long ptr)
...
...
include/uiautomationcoreapi.h
View file @
af0c9d0b
...
...
@@ -385,6 +385,13 @@ struct UiaWindowClosedEventArgs {
int
cRuntimeIdLen
;
};
struct
UiaFindParams
{
int
MaxDepth
;
BOOL
FindFirst
;
BOOL
ExcludeRoot
;
struct
UiaCondition
*
pFindCondition
;
};
typedef
SAFEARRAY
*
WINAPI
UiaProviderCallback
(
HWND
hwnd
,
enum
ProviderType
providerType
);
HRESULT
WINAPI
UiaGetReservedMixedAttributeValue
(
IUnknown
**
value
);
...
...
@@ -409,6 +416,8 @@ HRESULT WINAPI UiaGetUpdatedCache(HUIANODE huianode, struct UiaCacheRequest *cac
struct
UiaCondition
*
normalize_cond
,
SAFEARRAY
**
out_req
,
BSTR
*
tree_struct
);
HRESULT
WINAPI
UiaNavigate
(
HUIANODE
huianode
,
enum
NavigateDirection
dir
,
struct
UiaCondition
*
nav_condition
,
struct
UiaCacheRequest
*
cache_req
,
SAFEARRAY
**
out_req
,
BSTR
*
tree_struct
);
HRESULT
WINAPI
UiaFind
(
HUIANODE
huianode
,
struct
UiaFindParams
*
find_params
,
struct
UiaCacheRequest
*
cache_req
,
SAFEARRAY
**
out_req
,
SAFEARRAY
**
out_offsets
,
SAFEARRAY
**
out_tree_structs
);
#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