dswave_private.h 2.58 KB
Newer Older
1 2 3 4
/* DirectMusic Wave Private Include
 *
 * Copyright (C) 2003-2004 Rok Mandeljc
 *
5 6 7 8
 * 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.
9 10 11
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
14
 *
15 16 17
 * 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
18 19 20 21 22 23 24
 */

#ifndef __WINE_DSWAVE_PRIVATE_H
#define __WINE_DSWAVE_PRIVATE_H

#include <stdarg.h>

25 26
#define COBJMACROS

27 28 29 30 31 32 33 34 35
#include "windef.h"
#include "winbase.h"
#include "winnt.h"
#include "wingdi.h"
#include "winuser.h"

#include "wine/debug.h"
#include "wine/list.h"
#include "winreg.h"
36
#include "objbase.h"
37 38 39 40 41 42 43 44

#include "dmusici.h"
#include "dmusicf.h"
#include "dmusics.h"

/*****************************************************************************
 * ClassFactory
 */
45
extern HRESULT WINAPI create_dswave(REFIID lpcGUID, void **ret_iface) DECLSPEC_HIDDEN;
46

47 48 49
/**********************************************************************
 * Dll lifetime tracking declaration for dswave.dll
 */
50
extern LONG DSWAVE_refCount DECLSPEC_HIDDEN;
51 52
static inline void DSWAVE_LockModule(void) { InterlockedIncrement( &DSWAVE_refCount ); }
static inline void DSWAVE_UnlockModule(void) { InterlockedDecrement( &DSWAVE_refCount ); }
53 54 55 56 57 58 59 60 61 62

/*****************************************************************************
 * Misc.
 */
/* 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;

63 64 65 66 67
/* used for generic dumping (copied from ddraw) */
typedef struct {
    DWORD val;
    const char* name;
} flag_info;
68

69 70 71 72
typedef struct {
    const GUID *guid;
    const char* name;
} guid_info;
73

74 75
#define FE(x) { x, #x }	
#define GE(x) { &x, #x }
76

77
/* FOURCC to string conversion for debug messages */
78
extern const char *debugstr_fourcc (DWORD fourcc) DECLSPEC_HIDDEN;
79
/* returns name of given GUID */
80
extern const char *debugstr_dmguid (const GUID *id) DECLSPEC_HIDDEN;
81
/* dump whole DMUS_OBJECTDESC struct */
82
extern const char *debugstr_DMUS_OBJECTDESC (LPDMUS_OBJECTDESC pDesc) DECLSPEC_HIDDEN;
83 84

#endif	/* __WINE_DSWAVE_PRIVATE_H */