Commit 2ea3e404 authored by Esme Povirk's avatar Esme Povirk Committed by Alexandre Julliard

wbemprox: Implement Win32_SoundDevice.Manufacturer.

parent da3893fe
......@@ -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[] =
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment