Commit c9fb12c1 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

dmcompos: Don't force a calling convention on internal functions.

parent d535c8ac
......@@ -309,7 +309,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT WINAPI create_dmchordmap(REFIID lpcGUID, void **ppobj)
HRESULT create_dmchordmap(REFIID lpcGUID, void **ppobj)
{
IDirectMusicChordMapImpl* obj;
HRESULT hr;
......
......@@ -285,7 +285,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT WINAPI create_dmchordmaptrack(REFIID lpcGUID, void **ppobj)
HRESULT create_dmchordmaptrack(REFIID lpcGUID, void **ppobj)
{
IDirectMusicChordMapTrack* track;
HRESULT hr;
......
......@@ -144,7 +144,7 @@ static const IDirectMusicComposerVtbl dmcomposer_vtbl = {
};
/* for ClassFactory */
HRESULT WINAPI create_dmcomposer(REFIID riid, void **ret_iface)
HRESULT create_dmcomposer(REFIID riid, void **ret_iface)
{
IDirectMusicComposerImpl *obj;
HRESULT hr;
......
......@@ -42,10 +42,10 @@ LONG DMCOMPOS_refCount = 0;
typedef struct {
IClassFactory IClassFactory_iface;
HRESULT WINAPI (*fnCreateInstance)(REFIID riid, void **ret_iface);
HRESULT (*fnCreateInstance)(REFIID riid, void **ret_iface);
} IClassFactoryImpl;
static HRESULT WINAPI create_direct_music_template(REFIID riid, void **ret_iface)
static HRESULT create_direct_music_template(REFIID riid, void **ret_iface)
{
FIXME("(%s, %p) stub\n", debugstr_dmguid(riid), ret_iface);
......
......@@ -44,10 +44,10 @@
/*****************************************************************************
* ClassFactory
*/
extern HRESULT WINAPI create_dmchordmap(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT WINAPI create_dmcomposer(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT WINAPI create_dmchordmaptrack(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT WINAPI create_dmsignposttrack(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT create_dmchordmap(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT create_dmcomposer(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT create_dmchordmaptrack(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT create_dmsignposttrack(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
/**********************************************************************
* Dll lifetime tracking declaration for dmcompos.dll
......
......@@ -273,7 +273,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT WINAPI create_dmsignposttrack(REFIID lpcGUID, void **ppobj)
HRESULT create_dmsignposttrack(REFIID lpcGUID, void **ppobj)
{
IDirectMusicSignPostTrack *track;
HRESULT hr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment