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
c0360db5
Commit
c0360db5
authored
Oct 30, 2022
by
Connor McAdams
Committed by
Alexandre Julliard
Nov 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Add UiaAddEvent stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
41736eb5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
uia_client.c
dlls/uiautomationcore/uia_client.c
+11
-0
uiautomationcore.spec
dlls/uiautomationcore/uiautomationcore.spec
+1
-1
uiautomationcoreapi.h
include/uiautomationcoreapi.h
+3
-0
No files found.
dlls/uiautomationcore/uia_client.c
View file @
c0360db5
...
...
@@ -3015,6 +3015,17 @@ exit:
}
/***********************************************************************
* UiaAddEvent (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaAddEvent
(
HUIANODE
huianode
,
EVENTID
event_id
,
UiaEventCallback
*
callback
,
enum
TreeScope
scope
,
PROPERTYID
*
prop_ids
,
int
prop_ids_count
,
struct
UiaCacheRequest
*
cache_req
,
HUIAEVENT
*
huiaevent
)
{
FIXME
(
"(%p, %d, %p, %#x, %p, %d, %p, %p)
\n
"
,
huianode
,
event_id
,
callback
,
scope
,
prop_ids
,
prop_ids_count
,
cache_req
,
huiaevent
);
return
E_NOTIMPL
;
}
/***********************************************************************
* UiaRemoveEvent (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaRemoveEvent
(
HUIAEVENT
huiaevent
)
...
...
dlls/uiautomationcore/uiautomationcore.spec
View file @
c0360db5
...
...
@@ -53,7 +53,7 @@
@ stub TransformPattern_Move
@ stub TransformPattern_Resize
@ stub TransformPattern_Rotate
@ st
ub UiaAddEvent
@ st
dcall UiaAddEvent(ptr long ptr long ptr long ptr ptr)
@ stdcall UiaClientsAreListening()
#@ stub UiaDisconnectAllProviders
@ stdcall UiaDisconnectProvider(ptr)
...
...
include/uiautomationcoreapi.h
View file @
c0360db5
...
...
@@ -393,6 +393,7 @@ struct UiaFindParams {
};
typedef
SAFEARRAY
*
WINAPI
UiaProviderCallback
(
HWND
hwnd
,
enum
ProviderType
providerType
);
typedef
void
WINAPI
UiaEventCallback
(
struct
UiaEventArgs
*
pArgs
,
SAFEARRAY
*
pRequestedData
,
BSTR
pTreeStructure
);
HRESULT
WINAPI
UiaGetReservedMixedAttributeValue
(
IUnknown
**
value
);
HRESULT
WINAPI
UiaGetReservedNotSupportedValue
(
IUnknown
**
value
);
...
...
@@ -418,6 +419,8 @@ HRESULT WINAPI UiaNavigate(HUIANODE huianode, enum NavigateDirection dir, struct
struct
UiaCacheRequest
*
cache_req
,
SAFEARRAY
**
out_req
,
BSTR
*
tree_struct
);
HRESULT
WINAPI
UiaFind
(
HUIANODE
huianode
,
struct
UiaFindParams
*
find_params
,
struct
UiaCacheRequest
*
cache_req
,
SAFEARRAY
**
out_req
,
SAFEARRAY
**
out_offsets
,
SAFEARRAY
**
out_tree_structs
);
HRESULT
WINAPI
UiaAddEvent
(
HUIANODE
huianode
,
EVENTID
event_id
,
UiaEventCallback
*
callback
,
enum
TreeScope
scope
,
PROPERTYID
*
prop_ids
,
int
prop_ids_count
,
struct
UiaCacheRequest
*
cache_req
,
HUIAEVENT
*
huiaevent
);
HRESULT
WINAPI
UiaRemoveEvent
(
HUIAEVENT
huiaevent
);
HRESULT
WINAPI
UiaEventAddWindow
(
HUIAEVENT
huiaevent
,
HWND
hwnd
);
HRESULT
WINAPI
UiaEventRemoveWindow
(
HUIAEVENT
huiaevent
,
HWND
hwnd
);
...
...
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