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.

34 lines
820 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (c) Microsoft Corporation. All rights reserved.
  5. //
  6. // File: alrep.idl
  7. //
  8. // Contents: IAlertReport interface
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 13-Dec-93 markbl Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #include "idlmulti.h"
  18. LOCAL_INTERFACE(4E81DFE8-4CA0-101A-8206-08002B2FC09B)
  19. interface IAlertReport : IUnknown
  20. {
  21. #ifndef APBU
  22. import "unknwn.idl";
  23. #endif
  24. HRESULT InitNew([ in ] DISPPARAMS * pdparams);
  25. HRESULT GetReportData([ out ] DISPPARAMS * pdparams);
  26. HRESULT GetTitle([ out ] BSTR * pbstrTitle);
  27. HRESULT GetTextualDescription([ out ] BSTR * pbstrDescr);
  28. }