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.

42 lines
1.4 KiB

  1. // CCFILES.H
  2. // Macro definition of file anmes used by itcc
  3. // Unicode definitions
  4. #ifndef __CCFILES_H__
  5. #define __CCFILES_H__
  6. // Character count for longest object prefix (NOT COUNTING NULL)
  7. #define CCH_MAX_OBJ_STORAGE 10
  8. #define SZ_OBJINST_STREAM L"$OBJINST"
  9. #define SZ_CATALOG_STORAGE L"$CTCATALOG"
  10. #define SZ_WW_STORAGE L"$WW"
  11. #define SZ_GP_STORAGE L"$GP"
  12. #define SZ_FI_STREAM L"$FI"
  13. #define SZ_BTREE_BTREE L"BTREE"
  14. #define SZ_BTREE_DATA L"DATA"
  15. #define SZ_BTREE_HEADER L"PROPERTY"
  16. #define SZ_WORDWHEEL_MAP L"MAP"
  17. #define SZ_WORDWHEEL_INDEX L"INDEX"
  18. #define SZ_WORDWHEEL_STOP L"STOP"
  19. #define SZ_GROUP_MAIN L"MAIN"
  20. // ASCII Defintions
  21. #define SZ_CATALOG_STORAGE_A "$CTCATALOG"
  22. #define SZ_WW_STORAGE_A "$WW"
  23. #define SZ_GP_STORAGE_A "$GP"
  24. #define SZ_FI_STREAM_A "$FI"
  25. #define SZ_BTREE_BTREE_A "BTREE"
  26. #define SZ_BTREE_DATA_A "DATA"
  27. #define SZ_BTREE_HEADER_A "PROPERTY"
  28. #define SZ_WORDWHEEL_MAP_A "MAP"
  29. #define SZ_WORDWHEEL_INDEX_A "INDEX"
  30. #define SZ_WORDWHEEL_STOP_A "STOP"
  31. #define SZ_GROUP_MAIN_A "MAIN"
  32. #define CCH_MAX_OBJ_NAME 256
  33. #endif /* __CCCFILES_H__ */