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
0c4ec942
Commit
0c4ec942
authored
Jul 28, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Merge the IClassFactory implementations.
parent
3ff39057
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
66 deletions
+45
-66
dmusic_main.c
dlls/dmusic/dmusic_main.c
+45
-66
No files found.
dlls/dmusic/dmusic_main.c
View file @
0c4ec942
...
...
@@ -31,87 +31,64 @@ static HINSTANCE instance;
LONG
DMUSIC_refCount
=
0
;
typedef
struct
{
const
IClassFactoryVtbl
*
lpVtbl
;
IClassFactory
IClassFactory_iface
;
HRESULT
WINAPI
(
*
fnCreateInstance
)(
REFIID
riid
,
void
**
ppv
,
IUnknown
*
pUnkOuter
);
}
IClassFactoryImpl
;
/******************************************************************
*
DirectMusic ClassFactory
*
IClassFactory implementation
*/
static
HRESULT
WINAPI
DirectMusicCF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
FIXME
(
"- no interface IID: %s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppobj
==
NULL
)
return
E_POINTER
;
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
DirectMusicCF_AddRef
(
LPCLASSFACTORY
iface
)
{
DMUSIC_LockModule
();
return
2
;
/* non-heap based object */
}
static
ULONG
WINAPI
DirectMusicCF_Release
(
LPCLASSFACTORY
iface
)
{
DMUSIC_UnlockModule
();
return
1
;
/* non-heap based object */
}
static
HRESULT
WINAPI
DirectMusicCF_CreateInstance
(
LPCLASSFACTORY
iface
,
LPUNKNOWN
pOuter
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
TRACE
(
"(%p, %s, %p)
\n
"
,
pOuter
,
debugstr_dmguid
(
riid
),
ppobj
);
return
DMUSIC_CreateDirectMusicImpl
(
riid
,
ppobj
,
pOuter
);
static
inline
IClassFactoryImpl
*
impl_from_IClassFactory
(
IClassFactory
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
IClassFactoryImpl
,
IClassFactory_iface
);
}
static
HRESULT
WINAPI
DirectMusicCF_LockServer
(
LPCLASSFACTORY
iface
,
BOOL
dolock
)
{
TRACE
(
"(%d)
\n
"
,
dolock
);
if
(
dolock
)
DMUSIC_LockModule
();
else
DMUSIC_UnlockModule
();
static
HRESULT
WINAPI
ClassFactory_QueryInterface
(
IClassFactory
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
if
(
ppv
==
NULL
)
return
E_POINTER
;
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
))
TRACE
(
"(%p)->(IID_IUnknown %p)
\n
"
,
iface
,
ppv
);
else
if
(
IsEqualGUID
(
&
IID_IClassFactory
,
riid
))
TRACE
(
"(%p)->(IID_IClassFactory %p)
\n
"
,
iface
,
ppv
);
else
{
FIXME
(
"(%p)->(%s %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppv
);
*
ppv
=
NULL
;
return
E_NOINTERFACE
;
}
*
ppv
=
iface
;
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
static
const
IClassFactoryVtbl
DirectMusicCF_Vtbl
=
{
DirectMusicCF_QueryInterface
,
DirectMusicCF_AddRef
,
DirectMusicCF_Release
,
DirectMusicCF_CreateInstance
,
DirectMusicCF_LockServer
};
static
IClassFactoryImpl
DirectMusic_CF
=
{
&
DirectMusicCF_Vtbl
};
/******************************************************************
* DirectMusicCollection ClassFactory
*/
static
HRESULT
WINAPI
CollectionCF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
FIXME
(
"- no interface IID: %s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppobj
==
NULL
)
return
E_POINTER
;
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
CollectionCF_AddRef
(
LPCLASSFACTORY
iface
)
{
static
ULONG
WINAPI
ClassFactory_AddRef
(
IClassFactory
*
iface
)
{
DMUSIC_LockModule
();
return
2
;
/* non-heap based object */
}
static
ULONG
WINAPI
CollectionCF_Release
(
LPCLASSFACTORY
iface
)
{
static
ULONG
WINAPI
ClassFactory_Release
(
IClassFactory
*
iface
)
{
DMUSIC_UnlockModule
();
return
1
;
/* non-heap based object */
}
static
HRESULT
WINAPI
CollectionCF_CreateInstance
(
LPCLASSFACTORY
iface
,
LPUNKNOWN
pOuter
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
TRACE
(
"(%p, %s, %p)
\n
"
,
pOuter
,
debugstr_dmguid
(
riid
),
ppobj
);
return
DMUSIC_CreateDirectMusicCollectionImpl
(
riid
,
ppobj
,
pOuter
);
static
HRESULT
WINAPI
ClassFactory_CreateInstance
(
IClassFactory
*
iface
,
IUnknown
*
pUnkOuter
,
REFIID
riid
,
void
**
ppv
)
{
IClassFactoryImpl
*
This
=
impl_from_IClassFactory
(
iface
);
TRACE
(
"(%p, %s, %p)
\n
"
,
pUnkOuter
,
debugstr_dmguid
(
riid
),
ppv
);
return
This
->
fnCreateInstance
(
riid
,
ppv
,
pUnkOuter
);
}
static
HRESULT
WINAPI
CollectionCF_LockServer
(
LPCLASSFACTORY
iface
,
BOOL
dolock
)
{
static
HRESULT
WINAPI
ClassFactory_LockServer
(
IClassFactory
*
iface
,
BOOL
dolock
)
{
TRACE
(
"(%d)
\n
"
,
dolock
);
if
(
dolock
)
...
...
@@ -122,15 +99,17 @@ static HRESULT WINAPI CollectionCF_LockServer(LPCLASSFACTORY iface,BOOL dolock)
return
S_OK
;
}
static
const
IClassFactoryVtbl
CollectionCF_V
tbl
=
{
CollectionCF
_QueryInterface
,
CollectionCF
_AddRef
,
CollectionCF
_Release
,
CollectionCF
_CreateInstance
,
CollectionCF
_LockServer
static
const
IClassFactoryVtbl
classfactory_v
tbl
=
{
ClassFactory
_QueryInterface
,
ClassFactory
_AddRef
,
ClassFactory
_Release
,
ClassFactory
_CreateInstance
,
ClassFactory
_LockServer
};
static
IClassFactoryImpl
Collection_CF
=
{
&
CollectionCF_Vtbl
};
static
IClassFactoryImpl
DirectMusic_CF
=
{{
&
classfactory_vtbl
},
DMUSIC_CreateDirectMusicImpl
};
static
IClassFactoryImpl
Collection_CF
=
{{
&
classfactory_vtbl
},
DMUSIC_CreateDirectMusicCollectionImpl
};
/******************************************************************
* DllMain
...
...
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