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
0c143845
Commit
0c143845
authored
Sep 21, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atliface.idl: Added IRegistrarBase declaration.
parent
699fa23b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
registrar.c
dlls/atl/registrar.c
+3
-1
atliface.idl
include/atliface.idl
+11
-3
No files found.
dlls/atl/registrar.c
View file @
0c143845
...
...
@@ -543,7 +543,9 @@ static HRESULT WINAPI Registrar_QueryInterface(IRegistrar *iface, REFIID riid, v
{
TRACE
(
"(%p)->(%s %p
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppvObject
);
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
&
IID_IRegistrar
,
riid
))
{
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
&
IID_IRegistrar
,
riid
)
||
IsEqualGUID
(
&
IID_IRegistrarBase
,
riid
))
{
IRegistrar_AddRef
(
iface
);
*
ppvObject
=
iface
;
return
S_OK
;
...
...
include/atliface.idl
View file @
0c143845
...
...
@@ -24,17 +24,25 @@ cpp_quote("#endif")
[
object
,
oleautomation
,
uuid
(
44
EC053B
-
400
F
-
11
D0
-
9
DCD
-
00
A0C90391D3
)
uuid
(
e21f8a85
-
b05d
-
4243
-
8183
-
c7cb405588f7
)
,
pointer_default
(
unique
)
]
interface
IRegistrar
:
IUnknown
interface
IRegistrar
Base
:
IUnknown
{
HRESULT
AddReplacement
(
[
in
]
LPCOLESTR
Key
,
[
in
]
LPCOLESTR
item
)
;
HRESULT
ClearReplacements
()
;
}
[
object
,
uuid
(
44
EC053B
-
400
F
-
11
D0
-
9
DCD
-
00
A0C90391D3
),
pointer_default
(
unique
)
]
interface
IRegistrar
:
IRegistrarBase
{
HRESULT
ResourceRegisterSz
(
[
in
]
LPCOLESTR
resFileName
,
[
in
]
LPCOLESTR
szID
,
...
...
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