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.

40 lines
744 B

  1. /**************************************************************************
  2. *
  3. * Copyright (c) 2000 Microsoft Corporation
  4. *
  5. * Module Name:
  6. *
  7. * Messages
  8. *
  9. * Abstract:
  10. *
  11. * Simple class that encapsulates the necessary information to propagate
  12. * a basic object message
  13. *
  14. * Created:
  15. *
  16. * 06/17/2000 asecchia
  17. * Created it.
  18. *
  19. **************************************************************************/
  20. #ifndef _MESSAGE_HPP
  21. #define _MESSAGE_HPP
  22. #include "precomp.hpp"
  23. class Message {
  24. public:
  25. INT TheMessage;
  26. WPARAM WParam;
  27. LPARAM LParam;
  28. public:
  29. Message(INT msg, WPARAM w, LPARAM l) {
  30. TheMessage = msg;
  31. WParam = w;
  32. LParam = l;
  33. }
  34. };
  35. #endif