comctl32/listview: Free ID array when removing all items.
[wine] / dlls / winmm / winemm16.h
1 /*
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
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "wine/mmsystem16.h"
23 #include "wownt32.h"
24
25 /* mmsystem (16 bit files) only functions */
26 void            MMDRV_Init16(void);
27 void            MMSYSTEM_MMTIME16to32(LPMMTIME mmt32, const MMTIME16* mmt16);
28 void            MMSYSTEM_MMTIME32to16(LPMMTIME16 mmt16, const MMTIME* mmt32);
29
30 typedef LONG                    (*MCIPROC16)(DWORD, HDRVR16, WORD, DWORD, DWORD);
31
32 /* HANDLE16 -> HANDLE conversions */
33 #define HDRVR_32(h16)           ((HDRVR)(ULONG_PTR)(h16))
34 #define HMIDI_32(h16)           ((HMIDI)(ULONG_PTR)(h16))
35 #define HMIDIIN_32(h16)         ((HMIDIIN)(ULONG_PTR)(h16))
36 #define HMIDIOUT_32(h16)        ((HMIDIOUT)(ULONG_PTR)(h16))
37 #define HMIDISTRM_32(h16)       ((HMIDISTRM)(ULONG_PTR)(h16))
38 #define HMIXER_32(h16)          ((HMIXER)(ULONG_PTR)(h16))
39 #define HMIXEROBJ_32(h16)       ((HMIXEROBJ)(ULONG_PTR)(h16))
40 #define HMMIO_32(h16)           ((HMMIO)(ULONG_PTR)(h16))
41 #define HWAVE_32(h16)           ((HWAVE)(ULONG_PTR)(h16))
42 #define HWAVEIN_32(h16)         ((HWAVEIN)(ULONG_PTR)(h16))
43 #define HWAVEOUT_32(h16)        ((HWAVEOUT)(ULONG_PTR)(h16))
44
45 /* HANDLE -> HANDLE16 conversions */
46 #define HDRVR_16(h32)           (LOWORD(h32))
47 #define HMIDI_16(h32)           (LOWORD(h32))
48 #define HMIDIIN_16(h32)         (LOWORD(h32))
49 #define HMIDIOUT_16(h32)        (LOWORD(h32))
50 #define HMIDISTRM_16(h32)       (LOWORD(h32))
51 #define HMIXER_16(h32)          (LOWORD(h32))
52 #define HMIXEROBJ_16(h32)       (LOWORD(h32))
53 #define HMMIO_16(h32)           (LOWORD(h32))
54 #define HWAVE_16(h32)           (LOWORD(h32))
55 #define HWAVEIN_16(h32)         (LOWORD(h32))
56 #define HWAVEOUT_16(h32)        (LOWORD(h32))
57
58 typedef enum {
59     MMSYSTEM_MAP_NOMEM,         /* ko, memory problem */
60     MMSYSTEM_MAP_MSGERROR,      /* ko, unknown message */
61     MMSYSTEM_MAP_OK,            /* ok, no memory allocated. to be sent to the proc. */
62     MMSYSTEM_MAP_OKMEM,         /* ok, some memory allocated, need to call UnMapMsg. to be sent to the proc. */
63 } MMSYSTEM_MapType;