home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 198_01 / epath.h < prev    next >
Text File  |  1990-01-23  |  1KB  |  97 lines

  1. /*    EPATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. char *pathname[] =
  9.  
  10. #if    AMIGA
  11. {
  12.     ".emacsrc",
  13.     "emacs.hlp",
  14.     "",
  15.     "sys:c/",
  16.     "sys:t/",
  17.     "sys:s/",
  18.     ":c/",
  19.     ":t/",
  20.     ":s/"
  21. };
  22. #endif
  23.  
  24. #if    ST520
  25. {
  26.     "emacs.rc",
  27.     "emacs.hlp",
  28.     "\\",
  29.     "\\bin\\",
  30.     "\\util\\",
  31.     ""
  32. };
  33. #endif
  34.  
  35. #if    FINDER
  36. {
  37.     "emacs.rc",
  38.     "emacs.hlp",
  39.     "/bin",
  40.     "/sys/public",
  41.     ""
  42. };
  43. #endif
  44.  
  45. #if    MSDOS
  46. {
  47.     "emacs.rc",
  48.     "emacs.hlp",
  49.     "\\sys\\public\\",
  50.     "\\usr\\bin\\",
  51.     "\\bin\\",
  52.     "\\",
  53.     ""
  54. };
  55. #endif
  56.  
  57. #if    V7 | BSD | USG
  58. {
  59.     ".emacsrc",
  60.     "emacs.hlp",
  61.     "/usr/local/lib/",
  62.     "/usr/lib/",
  63.     ""
  64. };
  65. #endif
  66.  
  67. #if    VMS
  68. {
  69.     "emacs.rc",
  70.     "emacs.hlp",
  71.     "",
  72.     "microemacs$lib:",
  73.     "sys$sysdevice:[vmstools]"
  74. };
  75. #endif
  76.  
  77. #if    DECUSC
  78. {
  79.     "emacs.rc",
  80.     "emacs.hlp",
  81.     "",
  82.     "lb:[1,1]",
  83.     "lb:"
  84. };
  85. #endif
  86.  
  87. #if    WMCS
  88. {
  89.     "emacs.rc",
  90.     "emacs.hlp",
  91.     "",
  92.     "sys$disk/syslib.users/"
  93. };
  94. #endif
  95.  
  96. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  97.