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
23c10c92
Commit
23c10c92
authored
Feb 02, 2023
by
Connor McAdams
Committed by
Alexandre Julliard
Feb 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add UiaRaiseChangesEvent stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
e84b95ef
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 @
23c10c92
...
@@ -358,6 +358,16 @@ HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, en
...
@@ -358,6 +358,16 @@ HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, en
return
S_OK
;
return
S_OK
;
}
}
/***********************************************************************
* UiaRaiseChangesEvent (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaRaiseChangesEvent
(
IRawElementProviderSimple
*
provider
,
int
event_id_count
,
struct
UiaChangeInfo
*
uia_changes
)
{
FIXME
(
"(%p, %d, %p): stub
\n
"
,
provider
,
event_id_count
,
uia_changes
);
return
S_OK
;
}
HRESULT
WINAPI
UiaHostProviderFromHwnd
(
HWND
hwnd
,
IRawElementProviderSimple
**
provider
)
HRESULT
WINAPI
UiaHostProviderFromHwnd
(
HWND
hwnd
,
IRawElementProviderSimple
**
provider
)
{
{
struct
hwnd_host_provider
*
host_prov
;
struct
hwnd_host_provider
*
host_prov
;
...
...
dlls/uiautomationcore/uiautomationcore.spec
View file @
23c10c92
...
@@ -87,7 +87,7 @@
...
@@ -87,7 +87,7 @@
@ stdcall UiaRaiseAsyncContentLoadedEvent(ptr long double)
@ stdcall UiaRaiseAsyncContentLoadedEvent(ptr long double)
@ stdcall UiaRaiseAutomationEvent(ptr long)
@ stdcall UiaRaiseAutomationEvent(ptr long)
@ stdcall UiaRaiseAutomationPropertyChangedEvent(ptr long int128 int128)
@ stdcall UiaRaiseAutomationPropertyChangedEvent(ptr long int128 int128)
#@ stub UiaRaiseChangesEvent
@ stdcall UiaRaiseChangesEvent(ptr long ptr)
@ stdcall UiaRaiseNotificationEvent(ptr long long wstr wstr)
@ stdcall UiaRaiseNotificationEvent(ptr long long wstr wstr)
@ stdcall UiaRaiseStructureChangedEvent(ptr long ptr long)
@ stdcall UiaRaiseStructureChangedEvent(ptr long ptr long)
@ stdcall UiaRaiseTextEditTextChangedEvent(ptr long ptr)
@ stdcall UiaRaiseTextEditTextChangedEvent(ptr long ptr)
...
...
include/uiautomationcoreapi.h
View file @
23c10c92
...
@@ -480,6 +480,8 @@ HRESULT WINAPI UiaRaiseAsyncContentLoadedEvent(IRawElementProviderSimple *provid
...
@@ -480,6 +480,8 @@ HRESULT WINAPI UiaRaiseAsyncContentLoadedEvent(IRawElementProviderSimple *provid
enum
AsyncContentLoadedState
async_content_loaded_state
,
double
percent_complete
);
enum
AsyncContentLoadedState
async_content_loaded_state
,
double
percent_complete
);
HRESULT
WINAPI
UiaRaiseAutomationEvent
(
IRawElementProviderSimple
*
provider
,
EVENTID
id
);
HRESULT
WINAPI
UiaRaiseAutomationEvent
(
IRawElementProviderSimple
*
provider
,
EVENTID
id
);
HRESULT
WINAPI
UiaRaiseAutomationPropertyChangedEvent
(
IRawElementProviderSimple
*
,
PROPERTYID
,
VARIANT
,
VARIANT
);
HRESULT
WINAPI
UiaRaiseAutomationPropertyChangedEvent
(
IRawElementProviderSimple
*
,
PROPERTYID
,
VARIANT
,
VARIANT
);
HRESULT
WINAPI
UiaRaiseChangesEvent
(
IRawElementProviderSimple
*
provider
,
int
event_id_count
,
struct
UiaChangeInfo
*
uia_changes
);
HRESULT
WINAPI
UiaRaiseNotificationEvent
(
IRawElementProviderSimple
*
provider
,
enum
NotificationKind
notification_kind
,
HRESULT
WINAPI
UiaRaiseNotificationEvent
(
IRawElementProviderSimple
*
provider
,
enum
NotificationKind
notification_kind
,
enum
NotificationProcessing
notification_processing
,
BSTR
display_str
,
BSTR
activity_id
);
enum
NotificationProcessing
notification_processing
,
BSTR
display_str
,
BSTR
activity_id
);
HRESULT
WINAPI
UiaRaiseStructureChangedEvent
(
IRawElementProviderSimple
*
provider
,
enum
StructureChangeType
struct_change_type
,
HRESULT
WINAPI
UiaRaiseStructureChangedEvent
(
IRawElementProviderSimple
*
provider
,
enum
StructureChangeType
struct_change_type
,
...
...
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