Added Norwegian translation of some programs.
[wine] / programs / winecfg / properties.c
1 /*
2  * WineCfg properties management
3  *
4  * Copyright 2002 Jaco Greeff
5  * Copyright 2003 Dimitrie O. Paun
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #include <windows.h>
24
25 #include "properties.h"
26
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}
42 };
43
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   {"", ""}
54 };
55
56
57 /*****************************************************************************
58  */
59 const DLL_DESC* getDLLDefaults(void)
60 {
61     return sDLLType;
62 }
63
64 /*****************************************************************************
65  */
66 const AUDIO_DRIVER* getAudioDrivers(void)
67 {
68     return sAudioDrivers;
69 }