Commit 4e19dbbb authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

wbemprox: Add a few properties to Win32_QuickFixEngineering.

parent ab4e56b3
......@@ -367,7 +367,10 @@ static const struct column col_qualifier[] =
static const struct column col_quickfixengineering[] =
{
{ L"Caption", CIM_STRING },
{ L"Description", CIM_STRING },
{ L"HotFixID", CIM_STRING|COL_FLAG_KEY },
{ L"InstalledBy", CIM_STRING },
{ L"InstalledOn", CIM_STRING },
};
static const struct column col_rawsmbiostables[] =
{
......@@ -805,7 +808,10 @@ struct record_qualifier
struct record_quickfixengineering
{
const WCHAR *caption;
const WCHAR *description;
const WCHAR *hotfixid;
const WCHAR *installedby;
const WCHAR *installedon;
};
struct record_rawsmbiostables
{
......@@ -1011,7 +1017,7 @@ static const struct record_qualifier data_qualifier[] =
static const struct record_quickfixengineering data_quickfixengineering[] =
{
{ L"http://winehq.org", L"KB1234567" },
{ L"http://winehq.org", L"Update", L"KB1234567", L"", L"22/2/2022" },
};
static const struct record_softwarelicensingproduct data_softwarelicensingproduct[] =
......
......@@ -1998,7 +1998,11 @@ static void test_Win32_QuickFixEngineering( IWbemServices *services )
"unexpected variant type %#x\n", V_VT( &caption ) );
ok( type == CIM_STRING, "unexpected type %#lx\n", type );
check_property( obj, L"Description", VT_BSTR, CIM_STRING );
check_property( obj, L"HotFixID", VT_BSTR, CIM_STRING );
check_property( obj, L"InstalledBy", VT_BSTR, CIM_STRING );
check_property( obj, L"InstalledOn", VT_BSTR, CIM_STRING );
IWbemClassObject_Release( obj );
if (total++ >= 10) break;
}
......
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