Commit 74cf8f53 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wbemprox: Implement Win32_SoundDevice.Name.

parent 02ba712a
...@@ -416,6 +416,7 @@ static const struct column col_service[] = ...@@ -416,6 +416,7 @@ static const struct column col_service[] =
}; };
static const struct column col_sounddevice[] = static const struct column col_sounddevice[] =
{ {
{ prop_nameW, CIM_STRING },
{ prop_productnameW, CIM_STRING } { prop_productnameW, CIM_STRING }
}; };
static const struct column col_stdregprov[] = static const struct column col_stdregprov[] =
...@@ -667,6 +668,7 @@ struct record_service ...@@ -667,6 +668,7 @@ struct record_service
}; };
struct record_sounddevice struct record_sounddevice
{ {
const WCHAR *name;
const WCHAR *productname; const WCHAR *productname;
}; };
struct record_stdregprov struct record_stdregprov
...@@ -736,7 +738,7 @@ static const struct record_qualifier data_qualifier[] = ...@@ -736,7 +738,7 @@ static const struct record_qualifier data_qualifier[] =
}; };
static const struct record_sounddevice data_sounddevice[] = static const struct record_sounddevice data_sounddevice[] =
{ {
{ sounddevice_productnameW } { sounddevice_productnameW, sounddevice_productnameW }
}; };
static const struct record_stdregprov data_stdregprov[] = 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