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
8f70e20f
Commit
8f70e20f
authored
Aug 23, 2021
by
Connor McAdams
Committed by
Alexandre Julliard
Feb 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add UiaRaiseStructureChangedEvent stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
0dfc9461
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
uia_main.c
dlls/uiautomationcore/uia_main.c
+10
-0
uiautomationcore.spec
dlls/uiautomationcore/uiautomationcore.spec
+1
-1
uiautomationcoreapi.h
include/uiautomationcoreapi.h
+2
-0
No files found.
dlls/uiautomationcore/uia_main.c
View file @
8f70e20f
...
...
@@ -317,6 +317,16 @@ HRESULT WINAPI UiaRaiseAutomationPropertyChangedEvent(IRawElementProviderSimple
return
S_OK
;
}
/***********************************************************************
* UiaRaiseStructureChangedEvent (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaRaiseStructureChangedEvent
(
IRawElementProviderSimple
*
provider
,
enum
StructureChangeType
struct_change_type
,
int
*
runtime_id
,
int
runtime_id_len
)
{
FIXME
(
"(%p, %d, %p, %d): stub
\n
"
,
provider
,
struct_change_type
,
runtime_id
,
runtime_id_len
);
return
S_OK
;
}
HRESULT
WINAPI
UiaHostProviderFromHwnd
(
HWND
hwnd
,
IRawElementProviderSimple
**
provider
)
{
struct
hwnd_host_provider
*
host_prov
;
...
...
dlls/uiautomationcore/uiautomationcore.spec
View file @
8f70e20f
...
...
@@ -89,7 +89,7 @@
@ stdcall UiaRaiseAutomationPropertyChangedEvent(ptr long int128 int128)
#@ stub UiaRaiseChangesEvent
#@ stub UiaRaiseNotificationEvent
@ st
ub UiaRaiseStructureChangedEvent
@ st
dcall UiaRaiseStructureChangedEvent(ptr long ptr long)
#@ stub UiaRaiseTextEditTextChangedEvent
@ stdcall UiaRegisterProviderCallback(ptr)
@ stdcall UiaRemoveEvent(ptr)
...
...
include/uiautomationcoreapi.h
View file @
8f70e20f
...
...
@@ -478,6 +478,8 @@ int WINAPI UiaLookupId(enum AutomationIdentifierType type, const GUID *guid);
BOOL
WINAPI
UiaPatternRelease
(
HUIAPATTERNOBJECT
hobj
);
HRESULT
WINAPI
UiaRaiseAutomationEvent
(
IRawElementProviderSimple
*
provider
,
EVENTID
id
);
HRESULT
WINAPI
UiaRaiseAutomationPropertyChangedEvent
(
IRawElementProviderSimple
*
,
PROPERTYID
,
VARIANT
,
VARIANT
);
HRESULT
WINAPI
UiaRaiseStructureChangedEvent
(
IRawElementProviderSimple
*
provider
,
enum
StructureChangeType
struct_change_type
,
int
*
runtime_id
,
int
runtime_id_len
);
void
WINAPI
UiaRegisterProviderCallback
(
UiaProviderCallback
*
pCallback
);
LRESULT
WINAPI
UiaReturnRawElementProvider
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
,
IRawElementProviderSimple
*
elprov
);
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