mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
* Forgot wbemcli.idl.
svn path=/trunk/; revision=60425
This commit is contained in:
parent
0f76bdfc04
commit
2437be8ea5
1 changed files with 25 additions and 0 deletions
|
@ -176,6 +176,13 @@ typedef [v1_enum] enum tag_WBEMSTATUS
|
|||
WBEM_E_PROVIDER_DISABLED = 0x8004108a
|
||||
} WBEMSTATUS;
|
||||
|
||||
typedef [v1_enum] enum tag_WBEM_STATUS_TYPE
|
||||
{
|
||||
WBEM_STATUS_COMPLETE = 0,
|
||||
WBEM_STATUS_REQUIREMENTS = 1,
|
||||
WBEM_STATUS_PROGRESS = 2
|
||||
} WBEM_STATUS_TYPE;
|
||||
|
||||
typedef [v1_enum] enum tag_WBEM_TIMEOUT_TYPE
|
||||
{
|
||||
WBEM_NO_WAIT = 0,
|
||||
|
@ -290,6 +297,24 @@ interface IWbemStatusCodeText : IUnknown
|
|||
[out] BSTR *MessageText);
|
||||
};
|
||||
|
||||
[
|
||||
object,
|
||||
restricted,
|
||||
uuid(7c857801-7381-11cf-884d-00aa004b2e24)
|
||||
]
|
||||
interface IWbemObjectSink : IUnknown
|
||||
{
|
||||
HRESULT Indicate(
|
||||
[in] long lObjectCount,
|
||||
[in, size_is(lObjectCount)] IWbemClassObject **apObjArray);
|
||||
|
||||
HRESULT SetStatus(
|
||||
[in] long lFlags,
|
||||
[in] HRESULT hResult,
|
||||
[in] BSTR strParam,
|
||||
[in] IWbemClassObject *pObjParam);
|
||||
};
|
||||
|
||||
typedef [v1_enum] enum tag_WBEM_GENERIC_FLAG_TYPE
|
||||
{
|
||||
WBEM_FLAG_RETURN_WBEM_COMPLETE = 0,
|
||||
|
|
Loading…
Reference in a new issue