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

This commit is contained in:
Alex Henrie 2022-11-21 20:54:30 -07:00 committed by Alexandre Julliard
parent 6bf23c4ae9
commit 0b004131e2
4 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@ LONG DMSYNTH_refCount = 0;
typedef struct { typedef struct {
IClassFactory IClassFactory_iface; IClassFactory IClassFactory_iface;
HRESULT WINAPI (*fnCreateInstance)(REFIID riid, void **ppv); HRESULT (*fnCreateInstance)(REFIID riid, void **ppv);
} IClassFactoryImpl; } IClassFactoryImpl;
/****************************************************************** /******************************************************************

View file

@ -49,8 +49,8 @@ typedef struct IDirectMusicSynthSinkImpl IDirectMusicSynthSinkImpl;
/***************************************************************************** /*****************************************************************************
* ClassFactory * ClassFactory
*/ */
extern HRESULT WINAPI DMUSIC_CreateDirectMusicSynthImpl(REFIID riid, void **ppobj) DECLSPEC_HIDDEN; extern HRESULT DMUSIC_CreateDirectMusicSynthImpl(REFIID riid, void **ppobj) DECLSPEC_HIDDEN;
extern HRESULT WINAPI DMUSIC_CreateDirectMusicSynthSinkImpl(REFIID riid, void **ppobj) DECLSPEC_HIDDEN; extern HRESULT DMUSIC_CreateDirectMusicSynthSinkImpl(REFIID riid, void **ppobj) DECLSPEC_HIDDEN;
/***************************************************************************** /*****************************************************************************
* IDirectMusicSynth8Impl implementation structure * IDirectMusicSynth8Impl implementation structure

View file

@ -729,7 +729,7 @@ static const IKsControlVtbl DMSynthImpl_IKsControl_Vtbl = {
}; };
/* for ClassFactory */ /* for ClassFactory */
HRESULT WINAPI DMUSIC_CreateDirectMusicSynthImpl(REFIID riid, void **ppobj) HRESULT DMUSIC_CreateDirectMusicSynthImpl(REFIID riid, void **ppobj)
{ {
IDirectMusicSynth8Impl *obj; IDirectMusicSynth8Impl *obj;
HRESULT hr; HRESULT hr;

View file

@ -298,7 +298,7 @@ static const IKsControlVtbl DMSynthSinkImpl_IKsControl_Vtbl = {
}; };
/* for ClassFactory */ /* for ClassFactory */
HRESULT WINAPI DMUSIC_CreateDirectMusicSynthSinkImpl(REFIID riid, void **ret_iface) HRESULT DMUSIC_CreateDirectMusicSynthSinkImpl(REFIID riid, void **ret_iface)
{ {
IDirectMusicSynthSinkImpl *obj; IDirectMusicSynthSinkImpl *obj;
HRESULT hr; HRESULT hr;