2003-03-21 00:42:38 +00:00
|
|
|
/* DirectMusic Private Include
|
|
|
|
*
|
2004-01-20 00:21:40 +00:00
|
|
|
* Copyright (C) 2003-2004 Rok Mandeljc
|
2003-03-21 00:42:38 +00:00
|
|
|
*
|
2007-05-30 10:54:07 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-03-21 00:42:38 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-05-30 10:54:07 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2003-03-21 00:42:38 +00:00
|
|
|
*
|
2007-05-30 10:54:07 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-03-21 00:42:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_DMUSIC_PRIVATE_H
|
|
|
|
#define __WINE_DMUSIC_PRIVATE_H
|
|
|
|
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2004-08-11 19:43:45 +00:00
|
|
|
#define COBJMACROS
|
|
|
|
|
2003-03-21 00:42:38 +00:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winnt.h"
|
2003-09-05 23:08:26 +00:00
|
|
|
#include "wingdi.h"
|
2004-01-20 00:21:40 +00:00
|
|
|
#include "winuser.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/list.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "winreg.h"
|
2004-08-22 21:38:46 +00:00
|
|
|
#include "objbase.h"
|
2004-01-20 00:21:40 +00:00
|
|
|
|
2003-04-08 21:42:00 +00:00
|
|
|
#include "dmusici.h"
|
|
|
|
#include "dmusicf.h"
|
2004-01-20 00:21:40 +00:00
|
|
|
#include "dmusics.h"
|
2003-03-21 00:42:38 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Interfaces
|
|
|
|
*/
|
|
|
|
typedef struct IDirectMusic8Impl IDirectMusic8Impl;
|
|
|
|
typedef struct IDirectMusicBufferImpl IDirectMusicBufferImpl;
|
|
|
|
typedef struct IDirectMusicDownloadedInstrumentImpl IDirectMusicDownloadedInstrumentImpl;
|
|
|
|
typedef struct IDirectMusicDownloadImpl IDirectMusicDownloadImpl;
|
|
|
|
typedef struct IDirectMusicPortDownloadImpl IDirectMusicPortDownloadImpl;
|
|
|
|
typedef struct IDirectMusicPortImpl IDirectMusicPortImpl;
|
|
|
|
typedef struct IDirectMusicThruImpl IDirectMusicThruImpl;
|
2003-07-21 22:10:14 +00:00
|
|
|
typedef struct IReferenceClockImpl IReferenceClockImpl;
|
2003-04-08 21:42:00 +00:00
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
typedef struct IDirectMusicCollectionImpl IDirectMusicCollectionImpl;
|
|
|
|
typedef struct IDirectMusicInstrumentImpl IDirectMusicInstrumentImpl;
|
|
|
|
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2003-06-07 00:39:18 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* Some stuff to make my life easier :=)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* some sort of aux. midi channel: big fake at the moment; accepts only priority
|
|
|
|
changes... more coming soon */
|
2004-01-20 00:21:40 +00:00
|
|
|
typedef struct DMUSIC_PRIVATE_MCHANNEL_ {
|
2003-06-07 00:39:18 +00:00
|
|
|
DWORD priority;
|
|
|
|
} DMUSIC_PRIVATE_MCHANNEL, *LPDMUSIC_PRIVATE_MCHANNEL;
|
|
|
|
|
|
|
|
/* some sort of aux. channel group: collection of 16 midi channels */
|
2004-01-20 00:21:40 +00:00
|
|
|
typedef struct DMUSIC_PRIVATE_CHANNEL_GROUP_ {
|
2003-06-07 00:39:18 +00:00
|
|
|
DMUSIC_PRIVATE_MCHANNEL channel[16]; /* 16 channels in a group */
|
|
|
|
} DMUSIC_PRIVATE_CHANNEL_GROUP, *LPDMUSIC_PRIVATE_CHANNEL_GROUP;
|
|
|
|
|
2003-06-30 18:28:52 +00:00
|
|
|
|
2003-03-21 00:42:38 +00:00
|
|
|
/*****************************************************************************
|
2003-06-27 19:43:13 +00:00
|
|
|
* ClassFactory
|
2003-07-21 22:10:14 +00:00
|
|
|
*/
|
2012-04-23 19:25:53 +00:00
|
|
|
|
|
|
|
/* CLSID */
|
2011-05-13 15:00:59 +00:00
|
|
|
extern HRESULT WINAPI DMUSIC_CreateDirectMusicImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
|
2012-04-23 19:25:53 +00:00
|
|
|
extern HRESULT WINAPI DMUSIC_CreateDirectMusicCollectionImpl(LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
|
|
|
|
|
|
|
|
/* Internal */
|
2012-04-24 09:37:20 +00:00
|
|
|
extern HRESULT DMUSIC_CreateDirectMusicBufferImpl(LPDMUS_BUFFERDESC desc, LPVOID* ret_iface) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT DMUSIC_CreateDirectMusicDownloadedInstrumentImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT DMUSIC_CreateDirectMusicDownloadImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT DMUSIC_CreateReferenceClockImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT DMUSIC_CreateDirectMusicInstrumentImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) DECLSPEC_HIDDEN;
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2003-03-21 00:42:38 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusic8Impl implementation structure
|
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IDirectMusic8Impl {
|
2003-03-21 00:42:38 +00:00
|
|
|
/* IUnknown fields */
|
2005-06-01 19:57:42 +00:00
|
|
|
const IDirectMusic8Vtbl *lpVtbl;
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG ref;
|
2003-03-21 00:42:38 +00:00
|
|
|
|
2003-06-27 19:43:13 +00:00
|
|
|
/* IDirectMusicImpl fields */
|
2003-07-21 22:10:14 +00:00
|
|
|
IReferenceClockImpl* pMasterClock;
|
2005-11-29 09:43:18 +00:00
|
|
|
IDirectMusicPort** ppPorts;
|
2003-06-07 00:39:18 +00:00
|
|
|
int nrofports;
|
2003-03-21 00:42:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusicBufferImpl implementation structure
|
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IDirectMusicBufferImpl {
|
2012-04-23 19:25:53 +00:00
|
|
|
/* IUnknown fields */
|
2012-04-23 19:26:02 +00:00
|
|
|
IDirectMusicBuffer IDirectMusicBuffer_iface;
|
2012-04-23 19:25:53 +00:00
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
/* IDirectMusicBufferImpl fields */
|
|
|
|
GUID format;
|
|
|
|
DWORD size;
|
|
|
|
LPBYTE data;
|
2012-04-26 06:08:34 +00:00
|
|
|
DWORD write_pos;
|
2012-04-26 06:08:51 +00:00
|
|
|
REFERENCE_TIME start_time;
|
2003-03-21 00:42:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusicDownloadedInstrumentImpl implementation structure
|
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IDirectMusicDownloadedInstrumentImpl {
|
2003-03-21 00:42:38 +00:00
|
|
|
/* IUnknown fields */
|
2005-06-01 19:57:42 +00:00
|
|
|
const IDirectMusicDownloadedInstrumentVtbl *lpVtbl;
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG ref;
|
2003-03-21 00:42:38 +00:00
|
|
|
|
|
|
|
/* IDirectMusicDownloadedInstrumentImpl fields */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusicDownloadImpl implementation structure
|
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IDirectMusicDownloadImpl {
|
2003-03-21 00:42:38 +00:00
|
|
|
/* IUnknown fields */
|
2005-06-01 19:57:42 +00:00
|
|
|
const IDirectMusicDownloadVtbl *lpVtbl;
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG ref;
|
2003-03-21 00:42:38 +00:00
|
|
|
|
|
|
|
/* IDirectMusicDownloadImpl fields */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusicPortImpl implementation structure
|
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IDirectMusicPortImpl {
|
2003-03-21 00:42:38 +00:00
|
|
|
/* IUnknown fields */
|
2005-06-01 19:57:42 +00:00
|
|
|
const IDirectMusicPortVtbl *lpVtbl;
|
2008-12-18 20:24:58 +00:00
|
|
|
const IDirectMusicPortDownloadVtbl *lpDownloadVtbl;
|
|
|
|
const IDirectMusicThruVtbl *lpThruVtbl;
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG ref;
|
2003-03-21 00:42:38 +00:00
|
|
|
|
|
|
|
/* IDirectMusicPortImpl fields */
|
2003-07-21 22:10:14 +00:00
|
|
|
IDirectSound* pDirectSound;
|
|
|
|
IReferenceClock* pLatencyClock;
|
|
|
|
BOOL fActive;
|
2005-11-29 09:43:18 +00:00
|
|
|
DMUS_PORTCAPS caps;
|
|
|
|
DMUS_PORTPARAMS params;
|
2003-06-07 00:39:18 +00:00
|
|
|
int nrofgroups;
|
|
|
|
DMUSIC_PRIVATE_CHANNEL_GROUP group[1];
|
2003-03-21 00:42:38 +00:00
|
|
|
};
|
|
|
|
|
2005-11-29 09:43:18 +00:00
|
|
|
/** Internal factory */
|
2012-04-24 09:37:20 +00:00
|
|
|
extern HRESULT DMUSIC_CreateDirectMusicPortImpl (LPCGUID lpcGUID, LPVOID *ppobj, LPUNKNOWN pUnkOuter, LPDMUS_PORTPARAMS pPortParams, LPDMUS_PORTCAPS pPortCaps) DECLSPEC_HIDDEN;
|
2003-03-21 00:42:38 +00:00
|
|
|
|
2003-04-08 21:42:00 +00:00
|
|
|
/*****************************************************************************
|
2003-07-21 22:10:14 +00:00
|
|
|
* IReferenceClockImpl implementation structure
|
2003-04-08 21:42:00 +00:00
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IReferenceClockImpl {
|
2003-04-08 21:42:00 +00:00
|
|
|
/* IUnknown fields */
|
2005-06-01 19:57:42 +00:00
|
|
|
const IReferenceClockVtbl *lpVtbl;
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG ref;
|
2003-04-08 21:42:00 +00:00
|
|
|
|
2003-07-21 22:10:14 +00:00
|
|
|
/* IReferenceClockImpl fields */
|
|
|
|
REFERENCE_TIME rtTime;
|
|
|
|
DMUS_CLOCKINFO pClockInfo;
|
2003-04-08 21:42:00 +00:00
|
|
|
};
|
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
typedef struct _DMUS_PRIVATE_INSTRUMENT_ENTRY {
|
|
|
|
struct list entry; /* for listing elements */
|
|
|
|
IDirectMusicInstrument* pInstrument;
|
|
|
|
} DMUS_PRIVATE_INSTRUMENTENTRY, *LPDMUS_PRIVATE_INSTRUMENTENTRY;
|
|
|
|
|
|
|
|
typedef struct _DMUS_PRIVATE_POOLCUE {
|
|
|
|
struct list entry; /* for listing elements */
|
|
|
|
} DMUS_PRIVATE_POOLCUE, *LPDMUS_PRIVATE_POOLCUE;
|
|
|
|
|
2003-08-22 23:53:27 +00:00
|
|
|
/*****************************************************************************
|
2004-01-20 00:21:40 +00:00
|
|
|
* IDirectMusicCollectionImpl implementation structure
|
2003-08-22 23:53:27 +00:00
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IDirectMusicCollectionImpl {
|
2003-08-22 23:53:27 +00:00
|
|
|
/* IUnknown fields */
|
2005-06-01 19:57:42 +00:00
|
|
|
const IUnknownVtbl *UnknownVtbl;
|
|
|
|
const IDirectMusicCollectionVtbl *CollectionVtbl;
|
|
|
|
const IDirectMusicObjectVtbl *ObjectVtbl;
|
|
|
|
const IPersistStreamVtbl *PersistStreamVtbl;
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG ref;
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
/* IDirectMusicCollectionImpl fields */
|
|
|
|
IStream *pStm; /* stream from which we load collection and later instruments */
|
|
|
|
LARGE_INTEGER liCollectionPosition; /* offset in a stream where collection was loaded from */
|
|
|
|
LARGE_INTEGER liWavePoolTablePosition; /* offset in a stream where wave pool table can be found */
|
2003-08-22 23:53:27 +00:00
|
|
|
LPDMUS_OBJECTDESC pDesc;
|
2004-01-20 00:21:40 +00:00
|
|
|
CHAR* szCopyright; /* FIXME: should probably placed somewhere else */
|
|
|
|
LPDLSHEADER pHeader;
|
|
|
|
/* pool table */
|
|
|
|
LPPOOLTABLE pPoolTable;
|
|
|
|
LPPOOLCUE pPoolCues;
|
|
|
|
/* instruments */
|
|
|
|
struct list Instruments;
|
2003-08-22 23:53:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2004-01-20 00:21:40 +00:00
|
|
|
* IDirectMusicInstrumentImpl implementation structure
|
2003-08-22 23:53:27 +00:00
|
|
|
*/
|
2004-01-20 00:21:40 +00:00
|
|
|
struct IDirectMusicInstrumentImpl {
|
2003-08-22 23:53:27 +00:00
|
|
|
/* IUnknown fields */
|
2005-06-01 19:57:42 +00:00
|
|
|
const IUnknownVtbl *UnknownVtbl;
|
|
|
|
const IDirectMusicInstrumentVtbl *InstrumentVtbl;
|
2005-07-12 19:21:36 +00:00
|
|
|
LONG ref;
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
/* IDirectMusicInstrumentImpl fields */
|
|
|
|
LARGE_INTEGER liInstrumentPosition; /* offset in a stream where instrument chunk can be found */
|
|
|
|
LPGUID pInstrumentID;
|
|
|
|
LPINSTHEADER pHeader;
|
|
|
|
WCHAR wszName[DMUS_MAX_NAME];
|
|
|
|
/* instrument data */
|
2003-08-22 23:53:27 +00:00
|
|
|
};
|
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
/* custom :) */
|
2012-04-24 09:37:20 +00:00
|
|
|
extern HRESULT IDirectMusicInstrumentImpl_Custom_Load (LPDIRECTMUSICINSTRUMENT iface, LPSTREAM pStm) DECLSPEC_HIDDEN;
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2005-01-26 19:41:43 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* Dll lifetime tracking declaration for dmusic.dll
|
|
|
|
*/
|
2011-05-13 15:00:59 +00:00
|
|
|
extern LONG DMUSIC_refCount DECLSPEC_HIDDEN;
|
2005-06-20 14:18:03 +00:00
|
|
|
static inline void DMUSIC_LockModule(void) { InterlockedIncrement( &DMUSIC_refCount ); }
|
|
|
|
static inline void DMUSIC_UnlockModule(void) { InterlockedDecrement( &DMUSIC_refCount ); }
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Misc.
|
|
|
|
*/
|
|
|
|
/* my custom ICOM stuff */
|
|
|
|
#define ICOM_NAME_MULTI(impl,field,iface,name) impl* const name=(impl*)((char*)(iface) - offsetof(impl,field))
|
2004-08-13 00:44:22 +00:00
|
|
|
#define ICOM_THIS_MULTI(impl,field,iface) ICOM_NAME_MULTI(impl,field,iface,This)
|
2004-01-20 00:21:40 +00:00
|
|
|
|
|
|
|
/* for simpler reading */
|
|
|
|
typedef struct _DMUS_PRIVATE_CHUNK {
|
|
|
|
FOURCC fccID; /* FOURCC ID of the chunk */
|
|
|
|
DWORD dwSize; /* size of the chunk */
|
|
|
|
} DMUS_PRIVATE_CHUNK, *LPDMUS_PRIVATE_CHUNK;
|
|
|
|
|
2004-02-25 01:30:03 +00:00
|
|
|
/* used for generic dumping (copied from ddraw) */
|
|
|
|
typedef struct {
|
|
|
|
DWORD val;
|
|
|
|
const char* name;
|
|
|
|
} flag_info;
|
2004-01-20 00:21:40 +00:00
|
|
|
|
2004-02-25 01:30:03 +00:00
|
|
|
typedef struct {
|
|
|
|
const GUID *guid;
|
|
|
|
const char* name;
|
|
|
|
} guid_info;
|
2004-01-20 00:21:40 +00:00
|
|
|
|
|
|
|
/* used for initialising structs (primarily for DMUS_OBJECTDESC) */
|
|
|
|
#define DM_STRUCT_INIT(x) \
|
|
|
|
do { \
|
|
|
|
memset((x), 0, sizeof(*(x))); \
|
|
|
|
(x)->dwSize = sizeof(*x); \
|
|
|
|
} while (0)
|
|
|
|
|
2004-02-25 01:30:03 +00:00
|
|
|
#define FE(x) { x, #x }
|
|
|
|
#define GE(x) { &x, #x }
|
2004-01-20 00:21:40 +00:00
|
|
|
|
2004-02-25 01:30:03 +00:00
|
|
|
/* dwPatch from MIDILOCALE */
|
2011-05-13 15:00:59 +00:00
|
|
|
extern DWORD MIDILOCALE2Patch (const MIDILOCALE *pLocale) DECLSPEC_HIDDEN;
|
2004-02-25 01:30:03 +00:00
|
|
|
/* MIDILOCALE from dwPatch */
|
2011-05-13 15:00:59 +00:00
|
|
|
extern void Patch2MIDILOCALE (DWORD dwPatch, LPMIDILOCALE pLocale) DECLSPEC_HIDDEN;
|
2004-01-20 00:21:40 +00:00
|
|
|
|
2004-02-25 01:30:03 +00:00
|
|
|
/* check whether the given DWORD is even (return 0) or odd (return 1) */
|
2011-05-13 15:00:59 +00:00
|
|
|
extern int even_or_odd (DWORD number) DECLSPEC_HIDDEN;
|
2004-02-25 01:30:03 +00:00
|
|
|
/* FOURCC to string conversion for debug messages */
|
2011-05-13 15:00:59 +00:00
|
|
|
extern const char *debugstr_fourcc (DWORD fourcc) DECLSPEC_HIDDEN;
|
2004-02-25 01:30:03 +00:00
|
|
|
/* returns name of given GUID */
|
2011-05-13 15:00:59 +00:00
|
|
|
extern const char *debugstr_dmguid (const GUID *id) DECLSPEC_HIDDEN;
|
2012-04-10 20:30:21 +00:00
|
|
|
/* Dump whole DMUS_OBJECTDESC struct */
|
|
|
|
extern void dump_DMUS_OBJECTDESC(LPDMUS_OBJECTDESC desc) DECLSPEC_HIDDEN;
|
2012-04-10 20:30:29 +00:00
|
|
|
/* Dump whole DMUS_PORTPARAMS struct */
|
|
|
|
extern void dump_DMUS_PORTPARAMS(LPDMUS_PORTPARAMS params) DECLSPEC_HIDDEN;
|
2004-01-20 00:21:40 +00:00
|
|
|
|
2012-04-10 20:30:21 +00:00
|
|
|
#endif /* __WINE_DMUSIC_PRIVATE_H */
|