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
64056772
Commit
64056772
authored
Mar 22, 2017
by
Andrey Gusev
Committed by
Alexandre Julliard
Mar 22, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add UiaGetReservedMixedAttributeValue stub.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
995b6900
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
uia_main.c
dlls/uiautomationcore/uia_main.c
+10
-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 @
64056772
...
...
@@ -47,6 +47,16 @@ BOOL WINAPI UiaClientsAreListening(void)
}
/***********************************************************************
* UiaGetReservedMixedAttributeValue (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaGetReservedMixedAttributeValue
(
IUnknown
**
value
)
{
FIXME
(
"(%p) stub!
\n
"
,
value
);
*
value
=
NULL
;
return
S_OK
;
}
/***********************************************************************
* UiaLookupId (uiautomationcore.@)
*/
int
WINAPI
UiaLookupId
(
enum
AutomationIdentifierType
type
,
const
GUID
*
guid
)
...
...
dlls/uiautomationcore/uiautomationcore.spec
View file @
64056772
...
...
@@ -59,7 +59,7 @@
@ stub UiaGetErrorDescription
@ stub UiaGetPatternProvider
@ stub UiaGetPropertyValue
@ st
ub UiaGetReservedMixedAttributeValue
@ st
dcall UiaGetReservedMixedAttributeValue(ptr)
@ stub UiaGetReservedNotSupportedValue
@ stub UiaGetRootNode
@ stub UiaGetRuntimeId
...
...
include/uiautomationcoreapi.h
View file @
64056772
...
...
@@ -48,6 +48,7 @@ enum AutomationIdentifierType
AutomationIdentifierType_TextAttribute
};
HRESULT
WINAPI
UiaGetReservedMixedAttributeValue
(
IUnknown
**
value
);
int
WINAPI
UiaLookupId
(
enum
AutomationIdentifierType
type
,
const
GUID
*
guid
);
BOOL
WINAPI
UiaPatternRelease
(
HUIAPATTERNOBJECT
hobj
);
BOOL
WINAPI
UiaTextRangeRelease
(
HUIATEXTRANGE
hobj
);
...
...
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