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
641623ff
Commit
641623ff
authored
Jul 04, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Fix some long/LONG mismatches.
parent
6892434b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
uiautomation.c
dlls/uiautomationcore/tests/uiautomation.c
+1
-1
uia_client.c
dlls/uiautomationcore/uia_client.c
+1
-1
uia_event.c
dlls/uiautomationcore/uia_event.c
+3
-3
uia_private.h
dlls/uiautomationcore/uia_private.h
+1
-1
uia_provider.c
dlls/uiautomationcore/uia_provider.c
+2
-2
uiautomationcoreapi.h
include/uiautomationcoreapi.h
+1
-1
No files found.
dlls/uiautomationcore/tests/uiautomation.c
View file @
641623ff
...
...
@@ -29,7 +29,7 @@
#include "wine/test.h"
static
HRESULT
(
WINAPI
*
pUiaProviderFromIAccessible
)(
IAccessible
*
,
long
,
DWORD
,
IRawElementProviderSimple
**
);
static
HRESULT
(
WINAPI
*
pUiaProviderFromIAccessible
)(
IAccessible
*
,
LONG
,
DWORD
,
IRawElementProviderSimple
**
);
static
HRESULT
(
WINAPI
*
pUiaDisconnectProvider
)(
IRawElementProviderSimple
*
);
#define DEFINE_EXPECT(func) \
...
...
dlls/uiautomationcore/uia_client.c
View file @
641623ff
...
...
@@ -539,7 +539,7 @@ static HRESULT WINAPI uia_node_get_hwnd(IWineUiaNode *iface, ULONG *out_hwnd)
return
S_OK
;
}
static
HRESULT
WINAPI
uia_node_attach_event
(
IWineUiaNode
*
iface
,
long
proc_id
,
long
event_cookie
,
static
HRESULT
WINAPI
uia_node_attach_event
(
IWineUiaNode
*
iface
,
LONG
proc_id
,
LONG
event_cookie
,
IWineUiaEvent
**
ret_event
)
{
struct
uia_node
*
node
=
impl_from_IWineUiaNode
(
iface
);
...
...
dlls/uiautomationcore/uia_event.c
View file @
641623ff
...
...
@@ -562,7 +562,7 @@ static ULONG WINAPI uia_event_Release(IWineUiaEvent *iface)
return
ref
;
}
static
HRESULT
WINAPI
uia_event_advise_events
(
IWineUiaEvent
*
iface
,
BOOL
advise_added
,
long
adviser_start_idx
)
static
HRESULT
WINAPI
uia_event_advise_events
(
IWineUiaEvent
*
iface
,
BOOL
advise_added
,
LONG
adviser_start_idx
)
{
struct
uia_event
*
event
=
impl_from_IWineUiaEvent
(
iface
);
HRESULT
hr
;
...
...
@@ -607,7 +607,7 @@ static HRESULT WINAPI uia_event_advise_events(IWineUiaEvent *iface, BOOL advise_
return
S_OK
;
}
static
HRESULT
WINAPI
uia_event_set_event_data
(
IWineUiaEvent
*
iface
,
const
GUID
*
event_guid
,
long
scope
,
static
HRESULT
WINAPI
uia_event_set_event_data
(
IWineUiaEvent
*
iface
,
const
GUID
*
event_guid
,
LONG
scope
,
VARIANT
runtime_id
,
IWineUiaEvent
*
event_iface
)
{
struct
uia_event
*
event
=
impl_from_IWineUiaEvent
(
iface
);
...
...
@@ -1042,7 +1042,7 @@ HRESULT uia_event_add_serverside_event_adviser(IWineUiaEvent *serverside_event,
return
hr
;
}
static
HRESULT
uia_event_advise
(
struct
uia_event
*
event
,
BOOL
advise_added
,
long
start_idx
)
static
HRESULT
uia_event_advise
(
struct
uia_event
*
event
,
BOOL
advise_added
,
LONG
start_idx
)
{
IWineUiaEvent
*
event_iface
;
HRESULT
hr
;
...
...
dlls/uiautomationcore/uia_private.h
View file @
641623ff
...
...
@@ -220,7 +220,7 @@ HRESULT create_base_hwnd_provider(HWND hwnd, IRawElementProviderSimple **elprov)
void
uia_stop_provider_thread
(
void
)
DECLSPEC_HIDDEN
;
void
uia_provider_thread_remove_node
(
HUIANODE
node
)
DECLSPEC_HIDDEN
;
LRESULT
uia_lresult_from_node
(
HUIANODE
huianode
)
DECLSPEC_HIDDEN
;
HRESULT
create_msaa_provider
(
IAccessible
*
acc
,
long
child_id
,
HWND
hwnd
,
BOOL
known_root_acc
,
HRESULT
create_msaa_provider
(
IAccessible
*
acc
,
LONG
child_id
,
HWND
hwnd
,
BOOL
known_root_acc
,
IRawElementProviderSimple
**
elprov
)
DECLSPEC_HIDDEN
;
/* uia_utils.c */
...
...
dlls/uiautomationcore/uia_provider.c
View file @
641623ff
...
...
@@ -1133,7 +1133,7 @@ static const ILegacyIAccessibleProviderVtbl msaa_acc_provider_vtbl = {
msaa_acc_provider_get_DefaultAction
,
};
HRESULT
create_msaa_provider
(
IAccessible
*
acc
,
long
child_id
,
HWND
hwnd
,
BOOL
known_root_acc
,
HRESULT
create_msaa_provider
(
IAccessible
*
acc
,
LONG
child_id
,
HWND
hwnd
,
BOOL
known_root_acc
,
IRawElementProviderSimple
**
elprov
)
{
struct
msaa_provider
*
msaa_prov
=
heap_alloc_zero
(
sizeof
(
*
msaa_prov
));
...
...
@@ -1172,7 +1172,7 @@ HRESULT create_msaa_provider(IAccessible *acc, long child_id, HWND hwnd, BOOL kn
/***********************************************************************
* UiaProviderFromIAccessible (uiautomationcore.@)
*/
HRESULT
WINAPI
UiaProviderFromIAccessible
(
IAccessible
*
acc
,
long
child_id
,
DWORD
flags
,
HRESULT
WINAPI
UiaProviderFromIAccessible
(
IAccessible
*
acc
,
LONG
child_id
,
DWORD
flags
,
IRawElementProviderSimple
**
elprov
)
{
IServiceProvider
*
serv_prov
;
...
...
include/uiautomationcoreapi.h
View file @
641623ff
...
...
@@ -537,7 +537,7 @@ void WINAPI UiaRegisterProviderCallback(UiaProviderCallback *pCallback);
LRESULT
WINAPI
UiaReturnRawElementProvider
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
,
IRawElementProviderSimple
*
elprov
);
BOOL
WINAPI
UiaTextRangeRelease
(
HUIATEXTRANGE
hobj
);
HRESULT
WINAPI
UiaHostProviderFromHwnd
(
HWND
hwnd
,
IRawElementProviderSimple
**
elprov
);
HRESULT
WINAPI
UiaProviderFromIAccessible
(
IAccessible
*
acc
,
long
child_id
,
DWORD
flags
,
IRawElementProviderSimple
**
elprov
);
HRESULT
WINAPI
UiaProviderFromIAccessible
(
IAccessible
*
acc
,
LONG
child_id
,
DWORD
flags
,
IRawElementProviderSimple
**
elprov
);
HRESULT
WINAPI
UiaGetPropertyValue
(
HUIANODE
huianode
,
PROPERTYID
prop_id
,
VARIANT
*
out_val
);
HRESULT
WINAPI
UiaNodeFromProvider
(
IRawElementProviderSimple
*
elprov
,
HUIANODE
*
huianode
);
BOOL
WINAPI
UiaNodeRelease
(
HUIANODE
huianode
);
...
...
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