fileloc.h 765 B

123456789101112131415161718192021222324252627
  1. /** \file fileloc.h
  2. * \brief Header: config files list
  3. *
  4. * This file defines the locations of the various user specific
  5. * configuration files of the Midnight Commander. Historically the
  6. * system wide and the user specific file names have not always been
  7. * the same, so don't use these names for finding system wide
  8. * configuration files.
  9. *
  10. * \todo This inconsistency should disappear in the one of the next versions (5.0?)
  11. */
  12. #ifndef MC_FILELOC_H
  13. #define MC_FILELOC_H
  14. #define MC_USERCONF_DIR ".mc"
  15. #define MC_BASHRC_FILE "bashrc"
  16. #define MC_CONFIG_FILE "ini"
  17. #define MC_FILEBIND_FILE "bindings"
  18. #define MC_FILEPOS_FILE "filepos"
  19. #define MC_HISTORY_FILE "history"
  20. #define MC_HOTLIST_FILE "hotlist"
  21. #define MC_USERMENU_FILE "menu"
  22. #endif