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.

30 lines
716 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (c) Microsoft Corporation. All rights reserved.
  5. //
  6. // File: altrgt.idl
  7. //
  8. // Contents: IAlertTarget interface
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 03-Mar-95 markbl Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #include "idlmulti.h"
  18. LOCAL_INTERFACE(589b61C0-54E6-11CE-94DD-00AA0051E40F)
  19. interface IAlertTarget : IUnknown
  20. {
  21. #ifndef APBU
  22. import "unknwn.idl";
  23. #endif
  24. HRESULT Report(
  25. [ in ] ULONG cbReportSize,
  26. [ size_is(cbReportSize)] BYTE * pbReport);
  27. }