Show desktop mode disabled if the Desktop registry value exists but
[wine/wine-gecko.git] / programs / winecfg / properties.c
blob7f63a6f71be3c1b4d38d3fcb1255ce6164054955
1 /*
2 * WineCfg properties management
4 * Copyright 2002 Jaco Greeff
5 * Copyright 2003 Dimitrie O. Paun
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
23 #include <windows.h>
25 #include "properties.h"
27 static const DLL_DESC sDLLType[] = {
28 {"oleaut32", DLL_BUILTIN},
29 {"ole32", DLL_BUILTIN},
30 {"commdlg", DLL_BUILTIN},
31 {"comdlg32", DLL_BUILTIN},
32 {"shell", DLL_BUILTIN},
33 {"shell32", DLL_BUILTIN},
34 {"shfolder", DLL_BUILTIN},
35 {"shlwapi", DLL_BUILTIN},
36 {"shdocvw", DLL_BUILTIN},
37 {"advapi32", DLL_BUILTIN},
38 {"msvcrt", DLL_NATIVE},
39 {"mciavi32.dll", DLL_NATIVE},
40 {"*", DLL_NATIVE},
41 {"", -1}
44 static const AUDIO_DRIVER sAudioDrivers[] = {
45 {"ALSA", "alsa"},
46 {"aRts", "arts"},
47 {"EsounD", "esd"},
48 {"OSS", "oss"},
49 {"JACK", "jack"},
50 {"NAS", "nas"},
51 {"Audio IO(Solaris)", "audioio"},
52 {"Disable sound", ""},
53 {"", ""}
57 /*****************************************************************************
59 const DLL_DESC* getDLLDefaults(void)
61 return sDLLType;
64 /*****************************************************************************
66 const AUDIO_DRIVER* getAudioDrivers(void)
68 return sAudioDrivers;