Fix the GL_MAX_VERTEX_UNITS_ARB undeclared compilation error.
[wine] / dlls / dmusic32 / dmusic32_main.c
1 /* DirectMusic32 Main
2  *
3  * Copyright (C) 2003-2004 Rok Mandeljc
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include <stdarg.h>
21
22 #include "windef.h"
23 #include "winbase.h"
24 #include "winnt.h"
25 #include "wingdi.h"
26 #include "winuser.h"
27
28 #include "wine/debug.h"
29 #include "wine/list.h"
30 #include "wine/unicode.h"
31 #include "winreg.h"
32
33 #include "dmusici.h"
34 #include "dmusicf.h"
35 #include "dmusics.h"
36
37 WINE_DEFAULT_DEBUG_CHANNEL(dmusic32);
38
39 HRESULT WINAPI DMUSIC32_CreateCDirectMusicEmulatePort (LPVOID ptr1, LPVOID ptr2, LPVOID ptr3)
40 {       
41         FIXME("stub (undocumented function); if you see this, you're probably using native dmusic.dll. Use native dmusic32.dll as well!\n");
42         return S_OK;
43 }
44
45 HRESULT WINAPI DMUSIC32_EnumLegacyDevices (LPVOID ptr1, LPVOID ptr2)
46 {       
47         FIXME("stub (undocumented function); if you see this, you're probably using native dmusic.dll. Use native dmusic32.dll as well!\n");
48         return S_OK;
49 }