home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 55
/
Amiga_Dream_55.iso
/
RISCOS
/
APPS
/
TEXT
/
UNIXUT
/
MEMACS.ZIP
/
MEmacs
/
H
/
Epath
< prev
next >
Wrap
Text File
|
1990-06-26
|
1KB
|
101 lines
/* EPATH: This file contains certain info needed to locate the
MicroEMACS files on a system dependant basis.
*/
/* possible names and paths of help files under different OSs */
NOSHARE CONST char *pathname[] =
#if AMIGA
{
"",
"sys:c/",
"sys:t/",
"sys:s/",
"c:/",
":t/",
":s/"
};
#endif
#if ST520
{
"\\",
"\\bin\\",
"\\util\\",
""
};
#endif
#if FINDER
{
"/bin",
"/sys/public",
""
};
#endif
#if MSDOS | OS2
{
"\\sys\\public\\",
"\\usr\\bin\\",
"\\bin\\",
"\\",
""
};
#endif
#if V7 | BSD | USG | SMOS | HPUX | XENIX | SUN | AVIION
{
"/usr/local/",
"/usr/lib/",
""
};
#endif
#if VMS
{
"MICROEMACS$LIB:",
"SYS$LOGIN:",
"",
"sys$sysdevice:[vmstools]"
};
#endif
#if WMCS
{
"",
"sys$disk/syslib.users/"
};
#endif
#if AOSVS
/*
NOTE: you must use the Unix style pathnames here!
*/
{
"",
"/macros/",
"/help/"
};
#endif
#if MPE
{
".pub",
".pub.sys",
""
};
#endif /* MPE */
#if RISCOS /* PROVISIONAL */
{
"", /* File search paths... */
"Emacs:",
"Lib:Emacs."
};
#endif
#define NPNAMES (sizeof(pathname)/sizeof(char *))