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
9ea53ec2
Commit
9ea53ec2
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 UiaEventAddWindow stub.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
922706bd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
uia_client.c
dlls/uiautomationcore/uia_client.c
+9
-0
uiautomationcore.spec
dlls/uiautomationcore/uiautomationcore.spec
+1
-1
uiautomationcoreapi.h
include/uiautomationcoreapi.h
+1
-0
No files found.
dlls/uiautomationcore/uia_client.c
View file @
9ea53ec2
...
...
@@ -3022,3 +3022,12 @@ HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent)
FIXME
(
"(%p): stub
\n
"
,
huiaevent
);
return
E_NOTIMPL
;
}
/***********************************************************************
* UiaEventAddWindow (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaEventAddWindow
(
HUIAEVENT
huiaevent
,
HWND
hwnd
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
huiaevent
,
hwnd
);
return
E_NOTIMPL
;
}
dlls/uiautomationcore/uiautomationcore.spec
View file @
9ea53ec2
...
...
@@ -57,7 +57,7 @@
@ stdcall UiaClientsAreListening()
#@ stub UiaDisconnectAllProviders
@ stdcall UiaDisconnectProvider(ptr)
@ st
ub UiaEventAddWindow
@ st
dcall UiaEventAddWindow(ptr long)
@ stub UiaEventRemoveWindow
@ stdcall UiaFind(ptr ptr ptr ptr ptr ptr)
@ stub UiaGetErrorDescription
...
...
include/uiautomationcoreapi.h
View file @
9ea53ec2
...
...
@@ -419,6 +419,7 @@ HRESULT WINAPI UiaNavigate(HUIANODE huianode, enum NavigateDirection dir, 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
UiaRemoveEvent
(
HUIAEVENT
huiaevent
);
HRESULT
WINAPI
UiaEventAddWindow
(
HUIAEVENT
huiaevent
,
HWND
hwnd
);
#ifdef __cplusplus
}
...
...
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