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
7d5708a1
Commit
7d5708a1
authored
Jun 13, 2022
by
Connor McAdams
Committed by
Alexandre Julliard
Jun 15, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ia2comproxy: Introduce new proxy stub DLL for IAccessible2.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
ad8c61d8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
0 deletions
+66
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/ia2comproxy/Makefile.in
+8
-0
ia2_classes.idl
dlls/ia2comproxy/ia2_classes.idl
+30
-0
ia2comproxy.spec
dlls/ia2comproxy/ia2comproxy.spec
+4
-0
oleacc_classes.idl
dlls/ia2comproxy/oleacc_classes.idl
+21
-0
No files found.
configure
View file @
7d5708a1
...
...
@@ -1120,6 +1120,7 @@ enable_hlink
enable_hnetcfg
enable_http_sys
enable_httpapi
enable_ia2comproxy
enable_iccvid
enable_icmp
enable_ieframe
...
...
@@ -21492,6 +21493,7 @@ wine_fn_config_makefile dlls/hnetcfg/tests enable_tests
wine_fn_config_makefile dlls/http.sys enable_http_sys
wine_fn_config_makefile dlls/httpapi enable_httpapi
wine_fn_config_makefile dlls/httpapi/tests enable_tests
wine_fn_config_makefile dlls/ia2comproxy enable_ia2comproxy
wine_fn_config_makefile dlls/iccvid enable_iccvid
wine_fn_config_makefile dlls/icmp enable_icmp
wine_fn_config_makefile dlls/ieframe enable_ieframe
...
...
configure.ac
View file @
7d5708a1
...
...
@@ -2661,6 +2661,7 @@ WINE_CONFIG_MAKEFILE(dlls/hnetcfg/tests)
WINE_CONFIG_MAKEFILE(dlls/http.sys)
WINE_CONFIG_MAKEFILE(dlls/httpapi)
WINE_CONFIG_MAKEFILE(dlls/httpapi/tests)
WINE_CONFIG_MAKEFILE(dlls/ia2comproxy)
WINE_CONFIG_MAKEFILE(dlls/iccvid)
WINE_CONFIG_MAKEFILE(dlls/icmp)
WINE_CONFIG_MAKEFILE(dlls/ieframe)
...
...
dlls/ia2comproxy/Makefile.in
0 → 100644
View file @
7d5708a1
MODULE
=
ia2comproxy.dll
IMPORTS
=
uuid oleacc oleaut32 ole32 rpcrt4
IDL_SRCS
=
\
ia2_classes.idl
\
oleacc_classes.idl
dlldata_EXTRADEFS
=
-DWINE_REGISTER_DLL
-DPROXY_DELEGATION
dlls/ia2comproxy/ia2_classes.idl
0 → 100644
View file @
7d5708a1
/*
*
Copyright
2022
Connor
McAdams
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
ident
#
pragma
makedep
proxy
#
pragma
makedep
register
cpp_quote
(
"#include \"
oleacc
.
h\"")
#
include
"wine/iaccessible2.idl"
[
threading
(
both
),
uuid
(
01
c20f2b
-
3
dd2
-
400
f
-
949
f
-
ad00bdab1d41
)
/*
IAccessibleHyperLink
*/
]
coclass
PSFactoryBuffer
{
interface
IFactoryBuffer
; }
dlls/ia2comproxy/ia2comproxy.spec
0 → 100644
View file @
7d5708a1
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
dlls/ia2comproxy/oleacc_classes.idl
0 → 100644
View file @
7d5708a1
/*
*
Copyright
2022
Connor
McAdams
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
ident
#
include
"oleacc.idl"
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