Fixed header dependencies to be fully compatible with the Windows
[wine/multimedia.git] / dlls / winmm / winealsa / alsa.c
blob083f398f6b8df803f0ce3b7e2b86222f96a64ab0
1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
2 /*
3 * Wine Driver for ALSA
5 * Copyright 2002 Eric Pouech
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "config.h"
24 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
29 #include "winuser.h"
30 #include "mmddk.h"
31 #include "alsa.h"
33 #ifdef HAVE_ALSA
35 static struct WINE_ALSA* alsa = NULL;
37 /**************************************************************************
38 * ALSA_drvOpen [internal]
40 static DWORD ALSA_drvOpen(LPSTR str)
42 if (alsa)
43 return 0;
45 /* I know, this is ugly, but who cares... */
46 alsa = (struct WINE_ALSA*)1;
47 return 1;
50 /**************************************************************************
51 * ALSA_drvClose [internal]
53 static DWORD ALSA_drvClose(DWORD dwDevID)
55 if (alsa) {
56 alsa = NULL;
57 return 1;
59 return 0;
62 #endif
65 /**************************************************************************
66 * DriverProc (WINEALSA.@)
68 LONG CALLBACK ALSA_DriverProc(DWORD dwDevID, HDRVR hDriv, DWORD wMsg,
69 DWORD dwParam1, DWORD dwParam2)
71 /* EPP TRACE("(%08lX, %04X, %08lX, %08lX, %08lX)\n", */
72 /* EPP dwDevID, hDriv, wMsg, dwParam1, dwParam2); */
74 switch(wMsg) {
75 #ifdef HAVE_ALSA
76 case DRV_LOAD: ALSA_WaveInit();
77 return 1;
78 case DRV_FREE: return 1;
79 case DRV_OPEN: return ALSA_drvOpen((LPSTR)dwParam1);
80 case DRV_CLOSE: return ALSA_drvClose(dwDevID);
81 case DRV_ENABLE: return 1;
82 case DRV_DISABLE: return 1;
83 case DRV_QUERYCONFIGURE: return 1;
84 case DRV_CONFIGURE: MessageBoxA(0, "ALSA MultiMedia Driver !", "ALSA Driver", MB_OK); return 1;
85 case DRV_INSTALL: return DRVCNF_RESTART;
86 case DRV_REMOVE: return DRVCNF_RESTART;
87 #endif
88 default:
89 return DefDriverProc(dwDevID, hDriv, wMsg, dwParam1, dwParam2);