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

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

parent 71fdd64b
......@@ -510,7 +510,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT WINAPI create_dmband(REFIID lpcGUID, void **ppobj)
HRESULT create_dmband(REFIID lpcGUID, void **ppobj)
{
IDirectMusicBandImpl* obj;
HRESULT hr;
......
......@@ -633,7 +633,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT WINAPI create_dmbandtrack(REFIID lpcGUID, void **ppobj)
HRESULT create_dmbandtrack(REFIID lpcGUID, void **ppobj)
{
IDirectMusicBandTrack *track;
HRESULT hr;
......
......@@ -27,7 +27,7 @@ LONG DMBAND_refCount = 0;
typedef struct {
IClassFactory IClassFactory_iface;
HRESULT WINAPI (*fnCreateInstance)(REFIID riid, void **ret_iface);
HRESULT (*fnCreateInstance)(REFIID riid, void **ret_iface);
} IClassFactoryImpl;
/******************************************************************
......
......@@ -44,8 +44,8 @@
/*****************************************************************************
* ClassFactory
*/
extern HRESULT WINAPI create_dmband(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT WINAPI create_dmbandtrack(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT create_dmband(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
extern HRESULT create_dmbandtrack(REFIID riid, void **ret_iface) DECLSPEC_HIDDEN;
/*****************************************************************************
......
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