Source code of Windows XP (NT5)
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.

40 lines
1.0 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: NotifyEv.hxx
  7. //
  8. // Contents: CClientNotifyEvent class
  9. //
  10. // History: Jan-06-97 mohamedn Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #pragma once
  14. //+-------------------------------------------------------------------------
  15. //
  16. // Class: CClientNotifyEvent
  17. //
  18. // Synopsis: Consturctor encapsulates creating a CEventLogItem object,
  19. // and calls CEventLog::ReportEvent on that event item.
  20. //
  21. // History: Jan-04-97 mohamedn Created
  22. //--------------------------------------------------------------------------
  23. class CClientNotifyEvent
  24. {
  25. public:
  26. CClientNotifyEvent( WORD fType,
  27. DWORD eventId,
  28. ULONG nParams,
  29. const PROPVARIANT *aParams,
  30. ULONG cbData = 0,
  31. void* data = 0 );
  32. };