summaryrefslogtreecommitdiffstats
path: root/src/VBox/Devices/Graphics/shaderlib/wine/include/wmiutils.idl
blob: 0aaae0c37c6e85e4a57ede6ed3af1d67c7457ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*
 * Copyright 2012 Hans Leidekker for CodeWeavers
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

/*
 * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
 * a choice of LGPL license versions is made available with the language indicating
 * that LGPLv2 or any later version may be used, or where a choice of which version
 * of the LGPL is applied is otherwise unspecified.
 */

import "oaidl.idl";

interface IWbemPath;
interface IWbemPathKeyList;

typedef [v1_enum] enum tag_WBEM_PATH_STATUS_FLAG
{
    WBEMPATH_INFO_ANON_LOCAL_MACHINE    = 0x1,
    WBEMPATH_INFO_HAS_MACHINE_NAME      = 0x2,
    WBEMPATH_INFO_IS_CLASS_REF          = 0x4,
    WBEMPATH_INFO_IS_INST_REF           = 0x8,
    WBEMPATH_INFO_HAS_SUBSCOPES         = 0x10,
    WBEMPATH_INFO_IS_COMPOUND           = 0x20,
    WBEMPATH_INFO_HAS_V2_REF_PATHS      = 0x40,
    WBEMPATH_INFO_HAS_IMPLIED_KEY       = 0x80,
    WBEMPATH_INFO_CONTAINS_SINGLETON    = 0x100,
    WBEMPATH_INFO_V1_COMPLIANT          = 0x200,
    WBEMPATH_INFO_V2_COMPLIANT          = 0x400,
    WBEMPATH_INFO_CIM_COMPLIANT         = 0x800,
    WBEMPATH_INFO_IS_SINGLETON          = 0x1000,
    WBEMPATH_INFO_IS_PARENT             = 0x2000,
    WBEMPATH_INFO_SERVER_NAMESPACE_ONLY = 0x4000,
    WBEMPATH_INFO_NATIVE_PATH           = 0x8000,
    WBEMPATH_INFO_WMI_PATH              = 0x10000,
    WBEMPATH_INFO_PATH_HAD_SERVER       = 0x20000
} tag_WBEM_PATH_STATUS_FLAG;

typedef [v1_enum] enum tag_WBEM_PATH_CREATE_FLAG
{
    WBEMPATH_CREATE_ACCEPT_RELATIVE     = 0x1,
    WBEMPATH_CREATE_ACCEPT_ABSOLUTE     = 0x2,
    WBEMPATH_CREATE_ACCEPT_ALL          = 0x4,
    WBEMPATH_TREAT_SINGLE_IDENT_AS_NS   = 0x8
} tag_WBEM_PATH_CREATE_FLAG;

typedef [v1_enum] enum tag_WBEM_GET_TEXT_FLAGS
{
    WBEMPATH_COMPRESSED                     = 0x1,
    WBEMPATH_GET_RELATIVE_ONLY              = 0x2,
    WBEMPATH_GET_SERVER_TOO                 = 0x4,
    WBEMPATH_GET_SERVER_AND_NAMESPACE_ONLY  = 0x8,
    WBEMPATH_GET_NAMESPACE_ONLY             = 0x10,
    WBEMPATH_GET_ORIGINAL                   = 0x20
} tag_WBEM_GET_TEXT_FLAGS;

[
    local,
    object,
    uuid(9ae62877-7544-4bb0-aa26-a13824659ed6)
]
interface IWbemPathKeyList : IUnknown
{
    HRESULT GetCount(
        [out] ULONG *puKeyCount);

    HRESULT SetKey(
        [in,string] LPCWSTR wszName,
        [in] ULONG uFlags,
        [in] ULONG uCimType,
        [in] LPVOID pKeyVal);

    HRESULT SetKey2(
        [in,string] LPCWSTR wszName,
        [in] ULONG uFlags,
        [in] ULONG uCimType,
        [in] VARIANT *pKeyVal);

    HRESULT GetKey(
        [in] ULONG uKeyIx,
        [in] ULONG uFlags,
        [in,out] ULONG *puNameBufSize,
        [in,out] LPWSTR pszKeyName,
        [in,out] ULONG *puKeyValBufSize,
        [in,out] LPVOID pKeyVal,
        [out] ULONG *puApparentCimType);

    HRESULT GetKey2(
        [in] ULONG uKeyIx,
        [in] ULONG uFlags,
        [in,out] ULONG *puNameBufSize,
        [in,out] LPWSTR pszKeyName,
        [in,out] VARIANT *pKeyValue,
        [out] ULONG *puApparentCimType);

    HRESULT RemoveKey(
        [in,string] LPCWSTR wszName,
        [in] ULONG uFlags);

    HRESULT RemoveAllKeys(
        [in] ULONG uFlags);

    HRESULT MakeSingleton([in] boolean bSet);

    HRESULT GetInfo(
        [in] ULONG uRequestedInfo,
        [out] ULONGLONG *puResponse);

    HRESULT GetText(
        [in] long lFlags,
        [in,out] ULONG *puBuffLength,
        [in,out,string] LPWSTR pszText);
};

cpp_quote("#ifdef WINE_NO_UNICODE_MACROS")
cpp_quote("#undef GetClassName")
cpp_quote("#endif")

[
    local,
    object,
    uuid(3bc15af2-736c-477e-9e51-238af8667dcc)
]
interface IWbemPath : IUnknown
{
    HRESULT SetText(
        [in] ULONG uMode,
        [in] LPCWSTR pszPath);

    HRESULT GetText(
        [in] long lFlags,
        [in,out] ULONG *puBuffLength,
        [in,out,string] LPWSTR pszText);

    HRESULT GetInfo(
        [in] ULONG uRequestedInfo,
        [out] ULONGLONG *puResponse);

    HRESULT SetServer(
        [in,string] LPCWSTR Name);

    HRESULT GetServer(
        [in,out] ULONG *puNameBufLength,
        [in,out,string] LPWSTR pName);

    HRESULT GetNamespaceCount(
        [out] ULONG *puCount);

    HRESULT SetNamespaceAt(
        [in] ULONG uIndex,
        [in,string] LPCWSTR pszName);

    HRESULT GetNamespaceAt(
        [in] ULONG uIndex,
        [in,out] ULONG *puNameBufLength,
        [in,out,string] LPWSTR pName);

    HRESULT RemoveNamespaceAt(
        [in] ULONG uIndex);

    HRESULT RemoveAllNamespaces();

    HRESULT GetScopeCount(
        [out] ULONG *puCount);

    HRESULT SetScope(
        [in] ULONG uIndex,
        [in] LPWSTR pszClass);

    HRESULT SetScopeFromText(
        [in] ULONG uIndex,
        [in] LPWSTR pszText);

    HRESULT GetScope(
        [in] ULONG uIndex,
        [in,out] ULONG *puClassNameBufSize,
        [in,out] LPWSTR pszClass,
        [out] IWbemPathKeyList **pKeyList);

    HRESULT GetScopeAsText(
        [in] ULONG uIndex,
        [in,out] ULONG *puTextBufSize,
        [in,out] LPWSTR pszText);

    HRESULT RemoveScope(
        [in] ULONG uIndex);

    HRESULT RemoveAllScopes();

    HRESULT SetClassName(
        [in,string] LPCWSTR Name);

    HRESULT GetClassName(
        [in,out] ULONG *puBuffLength,
        [in,out,string] LPWSTR pszName);

    HRESULT GetKeyList(
        [out] IWbemPathKeyList **pOut);

    HRESULT CreateClassPart(
        [in] long lFlags,
        [in,string] LPCWSTR Name);

    HRESULT DeleteClassPart(
        [in] long lFlags);

    BOOL IsRelative(
        [in,string] LPWSTR wszMachine,
        [in,string] LPWSTR wszNamespace);

    BOOL IsRelativeOrChild(
        [in,string] LPWSTR wszMachine,
        [in,string] LPWSTR wszNamespace,
        [in] long lFlags);

    BOOL IsLocal(
        [in,string] LPCWSTR wszMachine);

    BOOL IsSameClassName(
        [in,string] LPCWSTR wszClass);
};

[
    uuid(cf4cc405-e2c5-4ddd-b3ce-5e7582d8c9fa)
]
coclass WbemDefPath
{
    interface IWbemPath;
};