mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wbemprox: Implement Win32_SoundDevice.Manufacturer.
Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
da3893fe48
commit
2ea3e40465
1 changed files with 6 additions and 4 deletions
|
@ -376,9 +376,10 @@ static const struct column col_sid[] =
|
|||
};
|
||||
static const struct column col_sounddevice[] =
|
||||
{
|
||||
{ L"Name", CIM_STRING },
|
||||
{ L"ProductName", CIM_STRING },
|
||||
{ L"StatusInfo", CIM_UINT16 },
|
||||
{ L"Manufacturer", CIM_STRING },
|
||||
{ L"Name", CIM_STRING },
|
||||
{ L"ProductName", CIM_STRING },
|
||||
{ L"StatusInfo", CIM_UINT16 },
|
||||
};
|
||||
static const struct column col_stdregprov[] =
|
||||
{
|
||||
|
@ -764,6 +765,7 @@ struct record_sid
|
|||
};
|
||||
struct record_sounddevice
|
||||
{
|
||||
const WCHAR *manufacturer;
|
||||
const WCHAR *name;
|
||||
const WCHAR *productname;
|
||||
UINT16 statusinfo;
|
||||
|
@ -884,7 +886,7 @@ static const struct record_quickfixengineering data_quickfixengineering[] =
|
|||
};
|
||||
static const struct record_sounddevice data_sounddevice[] =
|
||||
{
|
||||
{ L"Wine Audio Device", L"Wine Audio Device", 3 /* enabled */ }
|
||||
{ L"The Wine Project", L"Wine Audio Device", L"Wine Audio Device", 3 /* enabled */ }
|
||||
};
|
||||
static const struct record_stdregprov data_stdregprov[] =
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue