Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
901 B

  1. //***************************************************************************
  2. //
  3. // Copyright (c) 1997-1999 Microsoft Corporation
  4. //
  5. // testCOM.IDL
  6. //
  7. //
  8. //***************************************************************************
  9. import "oaidl.idl";
  10. import "wbemcli.idl";
  11. import "myext.h";
  12. // List of HTTP Versions
  13. typedef enum
  14. {
  15. WMI_XML_HTTP_VERSION_INVALID = 0,
  16. WMI_XML_HTTP_VERSION_1_0,
  17. WMI_XML_HTTP_VERSION_1_1
  18. } WMI_XML_HTTP_VERSION;
  19. // This interface supports functions implemented by a WMI XML Protocol Operations Handler
  20. [
  21. local,
  22. helpstring("WMI XML Protocol Operations Handler"),
  23. uuid(FA8D73D6-CD4E-11d3-93FC-00805F853771)
  24. ]
  25. interface IWbemXMLOperationsHandler : IUnknown
  26. {
  27. [
  28. helpstring("Handles an incoming WMI XML request")
  29. ]
  30. HRESULT ProcessHTTPRequest([in] LPEXTENSION_CONTROL_BLOCK pECB, [in] IUnknown *pDomDocument);
  31. };