]> git.proxmox.com Git - mirror_ovs.git/blame - lib/wmi.h
cirrus: Use FreeBSD 12.2.
[mirror_ovs.git] / lib / wmi.h
CommitLineData
da467899
AS
1/*
2 * Copyright (c) 2016 Cloudbase Solutions Srl
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef WMI_H
18#define WMI_H 1
19
20#include <windefs.h>
21#include <Wbemidl.h>
22
23static inline void fill_context(IWbemContext *pContext)
24{
25 VARIANT var;
26
27 /* IncludeQualifiers. */
28 VariantInit(&var);
29 var.vt = VT_BOOL;
30 var.boolVal = VARIANT_TRUE;
31 pContext->lpVtbl->SetValue(pContext, L"IncludeQualifiers", 0, &var);
32 VariantClear(&var);
33
34 VariantInit(&var);
35 var.vt = VT_I4;
36 var.lVal = 0;
37 pContext->lpVtbl->SetValue(pContext, L"PathLevel", 0, &var);
38 VariantClear(&var);
39
40 /* ExcludeSystemProperties. */
41 VariantInit(&var);
42 var.vt = VT_BOOL;
43 var.boolVal = VARIANT_FALSE;
44 pContext->lpVtbl->SetValue(pContext, L"ExcludeSystemProperties", 0, &var);
45 VariantClear(&var);
46}
47
48boolean create_wmi_port(char *name);
49boolean delete_wmi_port(char *name);
50
51#endif /* wmi.h */