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.

30 lines
871 B

  1. #ifndef CONST_H
  2. #define CONST_H
  3. #include "oemshare.h"
  4. #define MAXPATH 515
  5. #define AND &&
  6. #define OR ||
  7. #ifndef EXDEV
  8. #define EXDEV 0x12
  9. #endif
  10. static CONST WCHAR ACTION_C_NEW_DIRECTORY = L'A';
  11. static CONST WCHAR ACTION_C_MOVE_FILE = L'M';
  12. static CONST WCHAR ACTION_C_EXCEPT_FILE = L'E';
  13. static CONST WCHAR ACTION_C_NEW_ZERO_FILE = L'Z';
  14. static CONST WCHAR ACTION_C_RENAME_FILE = L'R';
  15. static CONST WCHAR ACTION_C_COPY_FILE = L'C';
  16. static CONST WCHAR ACTION_C_PATCH_FILE = L'P';
  17. static CONST WCHAR ACTION_C_NOT_PATCH_FILE = L'N';
  18. static CONST WCHAR ACTION_C_SAVED_FILE = L'S';
  19. static CONST WCHAR ACTION_C_DELETE_DIRECTORY = L'X';
  20. static CONST WCHAR DIR_C_READONLY = L'R';
  21. static CONST WCHAR DIR_C_SYSTEM = L'S';
  22. static CONST WCHAR DIR_C_HIDDEN = L'H';
  23. static CONST WCHAR DIR_C_COMPRESSED = L'C';
  24. static CONST WCHAR DIR_C_ENCRYPTED = L'E';
  25. #endif // CONST_H