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
e84b95ef
Commit
e84b95ef
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 UiaRaiseNotificationEvent stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
5e7356c8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
uia_main.c
dlls/uiautomationcore/uia_main.c
+11
-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 @
e84b95ef
...
...
@@ -347,6 +347,17 @@ HRESULT WINAPI UiaRaiseTextEditTextChangedEvent(IRawElementProviderSimple *provi
return
S_OK
;
}
/***********************************************************************
* UiaRaiseNotificationEvent (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaRaiseNotificationEvent
(
IRawElementProviderSimple
*
provider
,
enum
NotificationKind
notification_kind
,
enum
NotificationProcessing
notification_processing
,
BSTR
display_str
,
BSTR
activity_id
)
{
FIXME
(
"(%p, %d, %d, %s, %s): stub
\n
"
,
provider
,
notification_kind
,
notification_processing
,
debugstr_w
(
display_str
),
debugstr_w
(
activity_id
));
return
S_OK
;
}
HRESULT
WINAPI
UiaHostProviderFromHwnd
(
HWND
hwnd
,
IRawElementProviderSimple
**
provider
)
{
struct
hwnd_host_provider
*
host_prov
;
...
...
dlls/uiautomationcore/uiautomationcore.spec
View file @
e84b95ef
...
...
@@ -88,7 +88,7 @@
@ stdcall UiaRaiseAutomationEvent(ptr long)
@ stdcall UiaRaiseAutomationPropertyChangedEvent(ptr long int128 int128)
#@ stub UiaRaiseChangesEvent
#@ stub UiaRaiseNotificationEvent
@ stdcall UiaRaiseNotificationEvent(ptr long long wstr wstr)
@ stdcall UiaRaiseStructureChangedEvent(ptr long ptr long)
@ stdcall UiaRaiseTextEditTextChangedEvent(ptr long ptr)
@ stdcall UiaRegisterProviderCallback(ptr)
...
...
include/uiautomationcoreapi.h
View file @
e84b95ef
...
...
@@ -480,6 +480,8 @@ HRESULT WINAPI UiaRaiseAsyncContentLoadedEvent(IRawElementProviderSimple *provid
enum
AsyncContentLoadedState
async_content_loaded_state
,
double
percent_complete
);
HRESULT
WINAPI
UiaRaiseAutomationEvent
(
IRawElementProviderSimple
*
provider
,
EVENTID
id
);
HRESULT
WINAPI
UiaRaiseAutomationPropertyChangedEvent
(
IRawElementProviderSimple
*
,
PROPERTYID
,
VARIANT
,
VARIANT
);
HRESULT
WINAPI
UiaRaiseNotificationEvent
(
IRawElementProviderSimple
*
provider
,
enum
NotificationKind
notification_kind
,
enum
NotificationProcessing
notification_processing
,
BSTR
display_str
,
BSTR
activity_id
);
HRESULT
WINAPI
UiaRaiseStructureChangedEvent
(
IRawElementProviderSimple
*
provider
,
enum
StructureChangeType
struct_change_type
,
int
*
runtime_id
,
int
runtime_id_len
);
HRESULT
WINAPI
UiaRaiseTextEditTextChangedEvent
(
IRawElementProviderSimple
*
provider
,
enum
TextEditChangeType
text_edit_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