wbemprox: Add __DERIVATION to the list of system properties.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 8b6565a61f)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
Hans Leidekker 2021-10-13 12:48:45 +02:00 committed by Michael Stefaniuc
parent b5eebf644a
commit b296253f79
1 changed files with 2 additions and 1 deletions

View File

@ -1390,7 +1390,8 @@ HRESULT put_propval( const struct view *view, UINT index, const WCHAR *name, VAR
HRESULT get_properties( const struct view *view, UINT index, LONG flags, SAFEARRAY **props )
{
static const WCHAR * const system_props[] =
{ L"__GENUS", L"__CLASS", L"__RELPATH", L"__PROPERTY_COUNT", L"__SERVER", L"__NAMESPACE", L"__PATH" };
{ L"__GENUS", L"__CLASS", L"__RELPATH", L"__PROPERTY_COUNT", L"__DERIVATION", L"__SERVER", L"__NAMESPACE",
L"__PATH" };
SAFEARRAY *sa;
BSTR str;
UINT i, table_index, result_index, count = 0;