Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1e1d18a4
Commit
1e1d18a4
authored
Nov 21, 2023
by
Louis Lenders
Committed by
Alexandre Julliard
Nov 21, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Add StandardCimv2 namespace.
parent
2be5d408
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
builtin.c
dlls/wbemprox/builtin.c
+1
-0
services.c
dlls/wbemprox/tests/services.c
+1
-0
wbemprox_private.h
dlls/wbemprox/wbemprox_private.h
+1
-0
No files found.
dlls/wbemprox/builtin.c
View file @
1e1d18a4
...
@@ -4369,6 +4369,7 @@ builtin_namespaces[WBEMPROX_NAMESPACE_LAST] =
...
@@ -4369,6 +4369,7 @@ builtin_namespaces[WBEMPROX_NAMESPACE_LAST] =
{
{
{
L"cimv2"
,
cimv2_builtin_classes
,
ARRAY_SIZE
(
cimv2_builtin_classes
)},
{
L"cimv2"
,
cimv2_builtin_classes
,
ARRAY_SIZE
(
cimv2_builtin_classes
)},
{
L"Microsoft
\\
Windows
\\
Storage"
,
NULL
,
0
},
{
L"Microsoft
\\
Windows
\\
Storage"
,
NULL
,
0
},
{
L"StandardCimv2"
,
NULL
,
0
},
{
L"wmi"
,
wmi_builtin_classes
,
ARRAY_SIZE
(
wmi_builtin_classes
)},
{
L"wmi"
,
wmi_builtin_classes
,
ARRAY_SIZE
(
wmi_builtin_classes
)},
};
};
...
...
dlls/wbemprox/tests/services.c
View file @
1e1d18a4
...
@@ -256,6 +256,7 @@ static void test_namespaces(void)
...
@@ -256,6 +256,7 @@ static void test_namespaces(void)
{
{
{
L"ROOT
\\
CIMV2"
},
{
L"ROOT
\\
CIMV2"
},
{
L"ROOT
\\
Microsoft
\\
Windows
\\
Storage"
,
TRUE
/* Before Win8. */
},
{
L"ROOT
\\
Microsoft
\\
Windows
\\
Storage"
,
TRUE
/* Before Win8. */
},
{
L"ROOT
\\
StandardCimv2"
,
TRUE
/* Before Win8. */
},
{
L"ROOT
\\
WMI"
},
{
L"ROOT
\\
WMI"
},
};
};
IWbemLocator
*
locator
;
IWbemLocator
*
locator
;
...
...
dlls/wbemprox/wbemprox_private.h
View file @
1e1d18a4
...
@@ -23,6 +23,7 @@ enum wbm_namespace
...
@@ -23,6 +23,7 @@ enum wbm_namespace
{
{
WBEMPROX_NAMESPACE_CIMV2
,
WBEMPROX_NAMESPACE_CIMV2
,
WBEMPROX_NAMESPACE_MS_WINDOWS_STORAGE
,
WBEMPROX_NAMESPACE_MS_WINDOWS_STORAGE
,
WBEMPROX_NAMESPACE_STANDARDCIMV2
,
WBEMPROX_NAMESPACE_WMI
,
WBEMPROX_NAMESPACE_WMI
,
WBEMPROX_NAMESPACE_LAST
,
WBEMPROX_NAMESPACE_LAST
,
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment