Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. struct Message
  2. {
  3. PointXY CursorPos;
  4. int Info;
  5. DWORD TimeStamp;
  6.  
  7. /** not menu releated, but decided to squeez it here **/
  8. bool LShiftDown;
  9. bool LCtrlDown;
  10. bool LAltDown;
  11. bool Letter_C_Down;
  12.  
  13.  
  14. Message()
  15. {
  16. CursorPos._x = 0;
  17. CursorPos._y = 0;
  18. Info = 0;
  19. TimeStamp = 0;
  20. }
  21. Message(int x,int y, int _Info, DWORD _TimeStamp)
  22. {
  23. CursorPos._x = x;
  24. CursorPos._y = y;
  25. Info = _Info;
  26. TimeStamp = _TimeStamp;
  27. }
  28. Message(PointXY _CursorPos, int _Info, DWORD _TimeStamp)
  29. {
  30. CursorPos = _CursorPos;
  31. Info = _Info;
  32. TimeStamp = _TimeStamp;
  33. }
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement