blob: 2099833e98cb5bd42031097ba302e3b2ac5abd18 [file] [log] [blame]
Jonathan Ernst360a3f92006-05-18 14:49:52 +02001/*
Eric Pouechb1a2d882003-11-09 01:19:58 +00002 * Copyright 1998, Luiz Otavio L. Zorzella
3 * 1999, Eric Pouech
4 *
5 * Purpose: multimedia declarations (internal to WINMM & MMSYSTEM DLLs)
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Eric Pouechb1a2d882003-11-09 01:19:58 +000020 */
Jonathan Ernst360a3f92006-05-18 14:49:52 +020021
Eric Pouechb1a2d882003-11-09 01:19:58 +000022#include "winemm.h"
23#include "wine/mmsystem16.h"
24#include "wownt32.h"
25
26/* mmsystem (16 bit files) only functions */
27void MMDRV_Init16(void);
28void MMSYSTEM_MMTIME16to32(LPMMTIME mmt32, const MMTIME16* mmt16);
29void MMSYSTEM_MMTIME32to16(LPMMTIME16 mmt16, const MMTIME* mmt32);
30
31typedef LONG (*MCIPROC16)(DWORD, HDRVR16, WORD, DWORD, DWORD);
32
33/* HANDLE16 -> HANDLE conversions */
34#define HDRVR_32(h16) ((HDRVR)(ULONG_PTR)(h16))
35#define HMIDI_32(h16) ((HMIDI)(ULONG_PTR)(h16))
36#define HMIDIIN_32(h16) ((HMIDIIN)(ULONG_PTR)(h16))
37#define HMIDIOUT_32(h16) ((HMIDIOUT)(ULONG_PTR)(h16))
38#define HMIDISTRM_32(h16) ((HMIDISTRM)(ULONG_PTR)(h16))
39#define HMIXER_32(h16) ((HMIXER)(ULONG_PTR)(h16))
40#define HMIXEROBJ_32(h16) ((HMIXEROBJ)(ULONG_PTR)(h16))
41#define HMMIO_32(h16) ((HMMIO)(ULONG_PTR)(h16))
42#define HWAVE_32(h16) ((HWAVE)(ULONG_PTR)(h16))
43#define HWAVEIN_32(h16) ((HWAVEIN)(ULONG_PTR)(h16))
44#define HWAVEOUT_32(h16) ((HWAVEOUT)(ULONG_PTR)(h16))
45
46/* HANDLE -> HANDLE16 conversions */
47#define HDRVR_16(h32) (LOWORD(h32))
48#define HMIDI_16(h32) (LOWORD(h32))
49#define HMIDIIN_16(h32) (LOWORD(h32))
50#define HMIDIOUT_16(h32) (LOWORD(h32))
51#define HMIDISTRM_16(h32) (LOWORD(h32))
52#define HMIXER_16(h32) (LOWORD(h32))
53#define HMIXEROBJ_16(h32) (LOWORD(h32))
54#define HMMIO_16(h32) (LOWORD(h32))
55#define HWAVE_16(h32) (LOWORD(h32))
56#define HWAVEIN_16(h32) (LOWORD(h32))
57#define HWAVEOUT_16(h32) (LOWORD(h32))