Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame^] | 1 | /* |
Eric Pouech | b1a2d88 | 2003-11-09 01:19:58 +0000 | [diff] [blame] | 2 | * 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 Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame^] | 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Eric Pouech | b1a2d88 | 2003-11-09 01:19:58 +0000 | [diff] [blame] | 20 | */ |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame^] | 21 | |
Eric Pouech | b1a2d88 | 2003-11-09 01:19:58 +0000 | [diff] [blame] | 22 | #include "winemm.h" |
| 23 | #include "wine/mmsystem16.h" |
| 24 | #include "wownt32.h" |
| 25 | |
| 26 | /* mmsystem (16 bit files) only functions */ |
| 27 | void MMDRV_Init16(void); |
| 28 | void MMSYSTEM_MMTIME16to32(LPMMTIME mmt32, const MMTIME16* mmt16); |
| 29 | void MMSYSTEM_MMTIME32to16(LPMMTIME16 mmt16, const MMTIME* mmt32); |
| 30 | |
| 31 | typedef 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)) |