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:
Esme Povirk 2020-07-08 12:26:01 +02:00 committed by Alexandre Julliard
parent da3893fe48
commit 2ea3e40465

View file

@ -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[] =
{