71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
/*
|
|
* WineCfg properties management
|
|
*
|
|
* Copyright 2002 Jaco Greeff
|
|
* Copyright 2003 Dimitrie O. Paun
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#include <windows.h>
|
|
|
|
#include "properties.h"
|
|
|
|
static const DLL_DESC sDLLType[] = {
|
|
{"oleaut32", DLL_BUILTIN},
|
|
{"ole32", DLL_BUILTIN},
|
|
{"commdlg", DLL_BUILTIN},
|
|
{"comdlg32", DLL_BUILTIN},
|
|
{"shell", DLL_BUILTIN},
|
|
{"shell32", DLL_BUILTIN},
|
|
{"shfolder", DLL_BUILTIN},
|
|
{"shlwapi", DLL_BUILTIN},
|
|
{"shdocvw", DLL_BUILTIN},
|
|
{"advapi32", DLL_BUILTIN},
|
|
{"msvcrt", DLL_NATIVE},
|
|
{"mciavi.drv", DLL_NATIVE},
|
|
{"mcianim.drv", DLL_NATIVE},
|
|
{"*", DLL_NATIVE},
|
|
{"", -1}
|
|
};
|
|
|
|
static const AUDIO_DRIVER sAudioDrivers[] = {
|
|
{"ALSA", "alsa"},
|
|
{"aRts", "arts"},
|
|
{"EsounD", "esd"},
|
|
{"OSS", "oss"},
|
|
{"JACK", "jack"},
|
|
{"NAS", "nas"},
|
|
{"Audio IO(Solaris)", "audioio"},
|
|
{"Disable sound", ""},
|
|
{"", ""}
|
|
};
|
|
|
|
|
|
/*****************************************************************************
|
|
*/
|
|
const DLL_DESC* getDLLDefaults(void)
|
|
{
|
|
return sDLLType;
|
|
}
|
|
|
|
/*****************************************************************************
|
|
*/
|
|
const AUDIO_DRIVER* getAudioDrivers(void)
|
|
{
|
|
return sAudioDrivers;
|
|
}
|