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.

41 lines
1.0 KiB

  1. #define ID_APP 1000
  2. /* Menu Items */
  3. #define MENU_ABOUT 2
  4. #define MENU_EXIT 4
  5. #define MENU_BALL 99
  6. #define MENU_OPEN 11
  7. #define MENU_CLOSE 10
  8. #define MENU_MERGE 17
  9. #define MENU_SAVEAS 13
  10. #define MENU_SAVERAW 14
  11. #define MENU_OPTIONS 15
  12. #define MENU_UNDO 18
  13. #define MENU_CUT 19
  14. #define MENU_COPY 20
  15. #define MENU_PASTE 21
  16. #define MENU_DELETE 22
  17. #define MENU_MARK 30
  18. #define MENU_ZOOMQUARTER 54
  19. #define MENU_ZOOMHALF 50
  20. #define MENU_ZOOM1 51
  21. #define MENU_ZOOM2 52
  22. #define MENU_ZOOM4 53
  23. #define MENU_PLAY 100
  24. #define MENU_PAUSE 101
  25. #define MENU_STOP 102
  26. #define MENU_PLAY_DECOMPRESS 200
  27. #define MENU_PLAY_CHEAT 201
  28. #define MENU_PLAY_YIELD_BOUND 202
  29. #define MENU_PLAY_READ_BOUND 203
  30. #define MENU_PLAY_DECOMPRESS_BOUND 204
  31. #define MENU_PLAY_DRAW_BOUND 205
  32. #ifdef DEBUG
  33. extern void FAR CDECL dprintf(LPSTR, ...);
  34. #define DPF dprintf
  35. #else
  36. #define DPF / ## /
  37. #endif