Commit 725655de authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

wbemprox: Add WMI namespace.

parent fcb6ae29
......@@ -4138,6 +4138,7 @@ builtin_namespaces[WBEMPROX_NAMESPACE_LAST] =
{
{L"cimv2", cimv2_builtin_classes, ARRAY_SIZE(cimv2_builtin_classes)},
{L"Microsoft\\Windows\\Storage", NULL, 0},
{L"wmi", NULL, 0},
};
void init_table_list( void )
......
......@@ -258,6 +258,7 @@ static void test_namespaces(void)
{
{L"ROOT\\CIMV2"},
{L"ROOT\\Microsoft\\Windows\\Storage", TRUE /* Before Win8. */},
{L"ROOT\\WMI"},
};
IWbemLocator *locator;
IWbemServices *services;
......
......@@ -24,6 +24,7 @@ enum wbm_namespace
{
WBEMPROX_NAMESPACE_CIMV2,
WBEMPROX_NAMESPACE_MS_WINDOWS_STORAGE,
WBEMPROX_NAMESPACE_WMI,
WBEMPROX_NAMESPACE_LAST,
};
......
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