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.

32 lines
514 B

  1. /*
  2. * _undoid.h
  3. *
  4. * Purpose:
  5. * Undo ID defintions. These ID's are used to lookup string names
  6. * in our resources for the various undo operations
  7. *
  8. * Author:
  9. * AlexGo 4/13/95
  10. */
  11. #ifndef __UNDOID_H__
  12. #define __UNDOID_H__
  13. //
  14. // typing operations
  15. //
  16. #define UID_TYPING 1
  17. #define UID_REPLACESEL 2
  18. #define UID_DELETE 3
  19. //
  20. // data transfer operations
  21. //
  22. #define UID_DRAGDROP 4
  23. #define UID_CUT 5
  24. #define UID_PASTE 6
  25. #define UID_LOAD 7
  26. #endif // __UNDOID_H__