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
696b8325
Commit
696b8325
authored
Nov 12, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Fix the Registrar class factory implementation.
parent
9c4432f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
registrar.c
dlls/atl/registrar.c
+4
-5
No files found.
dlls/atl/registrar.c
View file @
696b8325
...
...
@@ -687,8 +687,9 @@ static HRESULT WINAPI RegistrarCF_QueryInterface(IClassFactory *iface, REFIID ri
{
TRACE
(
"(%p)->(%s %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppvObject
);
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
&
IID_I
Registrar
,
riid
))
{
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
&
IID_I
ClassFactory
,
riid
))
{
*
ppvObject
=
iface
;
IClassFactory_AddRef
(
iface
);
return
S_OK
;
}
...
...
@@ -743,10 +744,8 @@ HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID riid, LPVOID *ppvObject)
{
TRACE
(
"(%s %s %p)
\n
"
,
debugstr_guid
(
clsid
),
debugstr_guid
(
riid
),
ppvObject
);
if
(
IsEqualGUID
(
&
CLSID_Registrar
,
clsid
))
{
*
ppvObject
=
&
RegistrarCF
;
return
S_OK
;
}
if
(
IsEqualGUID
(
&
CLSID_Registrar
,
clsid
))
return
IClassFactory_QueryInterface
(
&
RegistrarCF
,
riid
,
ppvObject
);
FIXME
(
"Not supported class %s
\n
"
,
debugstr_guid
(
clsid
));
return
CLASS_E_CLASSNOTAVAILABLE
;
...
...
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