winmm: Move the 16bit management of midi stream (for midi out driver type) to the...
[wine] / dlls / winmm / winemm.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 <stdarg.h>
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "mmddk.h"
27
28 #define WINE_DEFAULT_WINMM_DRIVER     "alsa,oss,coreaudio,esd"
29 #define WINE_DEFAULT_WINMM_MAPPER     "msacm32.drv"
30 #define WINE_DEFAULT_WINMM_MIDI       "midimap.dll"
31
32 typedef enum {
33     WINMM_MAP_NOMEM,    /* ko, memory problem */
34     WINMM_MAP_MSGERROR, /* ko, unknown message */
35     WINMM_MAP_OK,       /* ok, no memory allocated. to be sent to the proc. */
36     WINMM_MAP_OKMEM,    /* ok, some memory allocated, need to call UnMapMsg. to be sent to the proc. */
37 } WINMM_MapType;
38
39 /* Who said goofy boy ? */
40 #define WINE_DI_MAGIC   0x900F1B01
41
42 typedef struct tagWINE_DRIVER
43 {
44     DWORD                       dwMagic;
45     /* as usual LPWINE_DRIVER == hDriver32 */
46     DWORD                       dwFlags;
47     union {
48         struct {
49             HMODULE                     hModule;
50             DRIVERPROC                  lpDrvProc;
51             DWORD_PTR                   dwDriverID;
52         } d32;
53         struct {
54             UINT16                      hDriver16;
55         } d16;
56     } d;
57     struct tagWINE_DRIVER*      lpPrevItem;
58     struct tagWINE_DRIVER*      lpNextItem;
59 } WINE_DRIVER, *LPWINE_DRIVER;
60
61 typedef DWORD   (CALLBACK *WINEMM_msgFunc16)(UINT16, WORD, DWORD, DWORD, DWORD);
62 typedef DWORD   (CALLBACK *WINEMM_msgFunc32)(UINT  , UINT, DWORD_PTR, DWORD_PTR, DWORD_PTR);
63
64 /* for each loaded driver and each known type of driver, this structure contains
65  * the information needed to access it
66  */
67 typedef struct tagWINE_MM_DRIVER_PART {
68     int                         nIDMin;         /* lower bound of global indexes for this type */
69     int                         nIDMax;         /* hhigher bound of global indexes for this type */
70     union {
71         WINEMM_msgFunc32        fnMessage32;    /* pointer to function */
72         WINEMM_msgFunc16        fnMessage16;
73     } u;
74 } WINE_MM_DRIVER_PART;
75
76 #define MMDRV_AUX               0
77 #define MMDRV_MIXER             1
78 #define MMDRV_MIDIIN            2
79 #define MMDRV_MIDIOUT           3
80 #define MMDRV_WAVEIN            4
81 #define MMDRV_WAVEOUT           5
82 #define MMDRV_MAX               6
83
84 /* each low-level .drv will be associated with an instance of this structure */
85 typedef struct tagWINE_MM_DRIVER {
86     HDRVR                       hDriver;
87     LPSTR                       drvname;        /* name of the driver */
88     unsigned                    bIs32 : 1,      /* TRUE if 32 bit driver, FALSE for 16 */
89                                 bIsMapper : 1;  /* TRUE if mapper */
90     WINE_MM_DRIVER_PART         parts[MMDRV_MAX];/* Information for all known types */
91 } WINE_MM_DRIVER, *LPWINE_MM_DRIVER;
92
93 typedef struct tagWINE_MLD {
94 /* EPP struct tagWINE_MLD*      lpNext; */              /* not used so far */
95        UINT                     uDeviceID;
96        UINT                     type;
97        UINT                     mmdIndex;               /* index to low-level driver in MMDrvs table */
98        DWORD_PTR                dwDriverInstance;       /* this value is driver related, as opposed to
99                                                          * opendesc.dwInstance which is client (callback) related */
100        WORD                     bFrom32;
101        WORD                     dwFlags;
102        DWORD_PTR                dwCallback;
103        DWORD_PTR                dwClientInstance;
104 } WINE_MLD, *LPWINE_MLD;
105
106 typedef struct  {
107        WINE_MLD                 mld;
108 } WINE_WAVE, *LPWINE_WAVE;
109
110 typedef struct {
111        WINE_MLD                 mld;
112        MIDIOPENDESC             mod;                    /* FIXME: should be removed */
113 } WINE_MIDI, *LPWINE_MIDI;
114
115 typedef struct {
116        WINE_MLD                 mld;
117 } WINE_MIXER, *LPWINE_MIXER;
118
119 #define WINE_MMTHREAD_CREATED   0x4153494C      /* "BSIL" */
120 #define WINE_MMTHREAD_DELETED   0xDEADDEAD
121
122 typedef struct {
123        DWORD                    dwSignature;            /* 00 "BSIL" when ok, 0xDEADDEAD when being deleted */
124        DWORD                    dwCounter;              /* 04 > 1 when in mmThread functions */
125        HANDLE                   hThread;                /* 08 hThread */
126        DWORD                    dwThreadID;             /* 0C */
127        DWORD                    fpThread;               /* 10 address of thread proc (segptr or lin depending on dwFlags) */
128        DWORD                    dwThreadPmt;            /* 14 parameter to be passed upon thread creation to fpThread */
129        LONG                     dwSignalCount;          /* 18 counter used for signaling */
130        HANDLE                   hEvent;                 /* 1C event */
131        HANDLE                   hVxD;                   /* 20 return from OpenVxDHandle */
132        DWORD                    dwStatus;               /* 24 0x00, 0x10, 0x20, 0x30 */
133        DWORD                    dwFlags;                /* 28 dwFlags upon creation */
134        UINT16                   hTask;                  /* 2C handle to created task */
135 } WINE_MMTHREAD;
136
137 typedef struct tagWINE_MCIDRIVER {
138         UINT                    wDeviceID;
139         UINT                    wType;
140         LPWSTR                  lpstrElementName;
141         LPWSTR                  lpstrDeviceType;
142         LPWSTR                  lpstrAlias;
143         HDRVR                   hDriver;
144         DWORD_PTR               dwPrivate;
145         YIELDPROC               lpfnYieldProc;
146         DWORD                   dwYieldData;
147         BOOL                    bIs32;
148         DWORD                   CreatorThread;
149         UINT                    uTypeCmdTable;
150         UINT                    uSpecificCmdTable;
151         struct tagWINE_MCIDRIVER*lpNext;
152 } WINE_MCIDRIVER, *LPWINE_MCIDRIVER;
153
154 struct IOProcList
155 {
156     struct IOProcList*pNext;       /* Next item in linked list */
157     FOURCC            fourCC;      /* four-character code identifying IOProc */
158     LPMMIOPROC        pIOProc;     /* pointer to IProc */
159     BOOL              is_unicode;  /* 32A or 32W */
160     int               count;       /* number of objects linked to it */
161 };
162
163 typedef struct tagWINE_MMIO {
164     MMIOINFO                    info;
165     struct tagWINE_MMIO*        lpNext;
166     struct IOProcList*          ioProc;
167     unsigned                    bTmpIOProc : 1,
168                                 bBufferLoaded : 1;
169     DWORD                       dwFileSize;
170 } WINE_MMIO, *LPWINE_MMIO;
171
172 /* function prototypes */
173
174 typedef WINMM_MapType           (*MMDRV_MAPFUNC)(UINT wMsg, DWORD_PTR *lpdwUser, DWORD_PTR* lpParam1, DWORD_PTR* lpParam2);
175 typedef WINMM_MapType           (*MMDRV_UNMAPFUNC)(UINT wMsg, DWORD_PTR *lpdwUser, DWORD_PTR* lpParam1, DWORD_PTR* lpParam2, MMRESULT ret);
176
177 LPWINE_DRIVER   DRIVER_FindFromHDrvr(HDRVR hDrvr);
178 BOOL            DRIVER_GetLibName(LPCWSTR keyName, LPCWSTR sectName, LPWSTR buf, int sz);
179 LPWINE_DRIVER   DRIVER_TryOpenDriver32(LPCWSTR fn, LPARAM lParam2);
180 void            DRIVER_UnloadAll(void);
181
182 BOOL            MMDRV_Init(void);
183 void            MMDRV_Exit(void);
184 UINT            MMDRV_GetNum(UINT);
185 LPWINE_MLD      MMDRV_Alloc(UINT size, UINT type, LPHANDLE hndl, DWORD* dwFlags,
186                             DWORD_PTR* dwCallback, DWORD_PTR* dwInstance, BOOL bFrom32);
187 void            MMDRV_Free(HANDLE hndl, LPWINE_MLD mld);
188 DWORD           MMDRV_Open(LPWINE_MLD mld, UINT wMsg, DWORD_PTR dwParam1, DWORD dwParam2);
189 DWORD           MMDRV_Close(LPWINE_MLD mld, UINT wMsg);
190 LPWINE_MLD      MMDRV_Get(HANDLE hndl, UINT type, BOOL bCanBeID);
191 LPWINE_MLD      MMDRV_GetRelated(HANDLE hndl, UINT srcType, BOOL bSrcCanBeID, UINT dstTyped);
192 DWORD           MMDRV_Message(LPWINE_MLD mld, UINT wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2, BOOL bFrom32);
193 UINT            MMDRV_PhysicalFeatures(LPWINE_MLD mld, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2);
194 BOOL            MMDRV_Is32(unsigned int);
195 void            MMDRV_InstallMap(unsigned int, MMDRV_MAPFUNC, MMDRV_UNMAPFUNC,
196                                  MMDRV_MAPFUNC, MMDRV_UNMAPFUNC, LPDRVCALLBACK);
197
198 const char*     MCI_MessageToString(UINT wMsg);
199 DWORD           MCI_SendCommand(UINT wDevID, UINT16 wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2);
200 LPWSTR          MCI_strdupAtoW(LPCSTR str);
201 LPSTR           MCI_strdupWtoA(LPCWSTR str);
202
203 BOOL            WINMM_CheckForMMSystem(void);
204 const char*     WINMM_ErrorToString(MMRESULT error);
205
206 UINT            WAVE_Open(HANDLE* lphndl, UINT uDeviceID, UINT uType,
207                           LPCWAVEFORMATEX lpFormat, DWORD_PTR dwCallback, 
208                           DWORD_PTR dwInstance, DWORD dwFlags, BOOL bFrom32);
209
210 void            TIME_MMTimeStop(void);
211
212 /* Global variables */
213 extern CRITICAL_SECTION WINMM_cs;
214 extern HINSTANCE hWinMM32Instance;
215 extern HANDLE psLastEvent;
216 extern HANDLE psStopEvent;
217
218 /* pointers to 16 bit functions (if sibling MMSYSTEM.DLL is loaded
219  * NULL otherwise
220  */
221 extern  WINE_MMTHREAD*  (*pFnGetMMThread16)(UINT16);
222 extern  LPWINE_DRIVER   (*pFnOpenDriver16)(LPCWSTR,LPCWSTR,LPARAM);
223 extern  LRESULT         (*pFnCloseDriver16)(UINT16,LPARAM,LPARAM);
224 extern  LRESULT         (*pFnSendMessage16)(UINT16,UINT,LPARAM,LPARAM);
225 extern  WINMM_MapType   (*pFnMciMapMsg32WTo16)(WORD,WORD,DWORD,DWORD_PTR*);
226 extern  WINMM_MapType   (*pFnMciUnMapMsg32WTo16)(WORD,WORD,DWORD,DWORD_PTR);
227 extern  LRESULT         (*pFnCallMMDrvFunc16)(DWORD /* in fact FARPROC16 */,WORD,WORD,LONG,LONG,LONG);
228 extern  unsigned        (*pFnLoadMMDrvFunc16)(LPCSTR,LPWINE_DRIVER, LPWINE_MM_DRIVER);
229 extern  void            (WINAPI *pFnReleaseThunkLock)(DWORD*);
230 extern  void            (WINAPI *pFnRestoreThunkLock)(DWORD);
231
232 /* GetDriverFlags() returned bits is not documented (nor the call itself)
233  * Here are Wine only definitions of the bits
234  */
235 #define WINE_GDF_EXIST          0x80000000
236 #define WINE_GDF_16BIT          0x10000000
237 #define WINE_GDF_EXTERNAL_MASK  0xF0000000
238 #define WINE_GDF_SESSION        0x00000001