12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- cpp_quote("/*******************************************************************************/" )
- cpp_quote("/* */" )
- cpp_quote("/* Copyright © Microsoft Corporation. All rights reserved. */" )
- cpp_quote("/* */" )
- /* WBEMADS.IDL */
- /* */
- cpp_quote("/* IDL source for WMI ADSI extension */" )
- cpp_quote("/* */" )
- cpp_quote("/*******************************************************************************/" )
- // This file will be processed by the MIDL tool to
- // produce the type library (WMIExtension.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
- import "wbemdisp.idl";
- [
- uuid(e503d000-5c7f-11d2-8b74-00104b2afb41),
- version(1.0),
- helpstring("WMI Extension to DS 1.0 Type Library")
- ]
- library WMIEXTENSIONLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
- interface IWMIExtension;
- [
- uuid(f0975afe-5c7f-11d2-8b74-00104b2afb41),
- helpstring("WMI DS Extension class")
- ]
- coclass WMIExtension
- {
- [default] interface IWMIExtension;
- };
- };
- [
- object,
- uuid(adc1f06e-5c7e-11d2-8b74-00104b2afb41),
- dual,
- helpstring("WMI extension to the DS Interface"),
- pointer_default(unique)
- ]
- interface IWMIExtension : IDispatch
- {
- [id(1), propget, helpstring("Path to matching WMI object")]
- HRESULT WMIObjectPath([out, retval] BSTR *strWMIObjectPath);
- [id(2), helpstring("Retrieves the matching WMI object")]
- HRESULT GetWMIObject([out, retval] ISWbemObject **objWMIObject);
-
- [id(3), helpstring("Retrieves the matching WMI services pointer")]
- HRESULT GetWMIServices([out, retval] ISWbemServices **objWMIServices);
- };
|