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
78406153
Commit
78406153
authored
Jul 08, 2022
by
Connor McAdams
Committed by
Alexandre Julliard
Jul 19, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add stub UiaGetPropertyValue implementation.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
3fc9493f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
uia_main.c
dlls/uiautomationcore/uia_main.c
+9
-0
uiautomationcore.spec
dlls/uiautomationcore/uiautomationcore.spec
+1
-1
uiautomationcoreapi.h
include/uiautomationcoreapi.h
+1
-0
No files found.
dlls/uiautomationcore/uia_main.c
View file @
78406153
...
...
@@ -359,3 +359,12 @@ HRESULT WINAPI UiaDisconnectProvider(IRawElementProviderSimple *provider)
FIXME
(
"(%p): stub
\n
"
,
provider
);
return
E_NOTIMPL
;
}
/***********************************************************************
* UiaGetPropertyValue (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaGetPropertyValue
(
HUIANODE
huianode
,
PROPERTYID
prop_id
,
VARIANT
*
out_val
)
{
FIXME
(
"(%p, %d, %p): stub
\n
"
,
huianode
,
prop_id
,
out_val
);
return
E_NOTIMPL
;
}
dlls/uiautomationcore/uiautomationcore.spec
View file @
78406153
...
...
@@ -62,7 +62,7 @@
@ stub UiaFind
@ stub UiaGetErrorDescription
@ stub UiaGetPatternProvider
@ st
ub UiaGetPropertyValue
@ st
dcall UiaGetPropertyValue(ptr long ptr)
@ stdcall UiaGetReservedMixedAttributeValue(ptr)
@ stdcall UiaGetReservedNotSupportedValue(ptr)
@ stub UiaGetRootNode
...
...
include/uiautomationcoreapi.h
View file @
78406153
...
...
@@ -255,6 +255,7 @@ LRESULT WINAPI UiaReturnRawElementProvider(HWND hwnd, WPARAM wParam, LPARAM lPar
BOOL
WINAPI
UiaTextRangeRelease
(
HUIATEXTRANGE
hobj
);
HRESULT
WINAPI
UiaHostProviderFromHwnd
(
HWND
hwnd
,
IRawElementProviderSimple
**
elprov
);
HRESULT
WINAPI
UiaProviderFromIAccessible
(
IAccessible
*
acc
,
long
child_id
,
DWORD
flags
,
IRawElementProviderSimple
**
elprov
);
HRESULT
WINAPI
UiaGetPropertyValue
(
HUIANODE
huianode
,
PROPERTYID
prop_id
,
VARIANT
*
out_val
);
#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