home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------------ */
- /* DIRMAN.H */
- /* (c) 1990 Olaf Stoyke & TOOLBOX */
- /* ------------------------------------------------------ */
- #include <stdlib.h> /* Wegen "exit" */
- #include <stdio.h> /* Für die Dateibehandlung */
- #include <dir.h> /* Für die Verzeichnisbehandlg. */
-
- #define OINIT 0 /* Internal use only ... */
- #define OSAVE 1
- #define OLOAD 2
- #define OPEEK 3
- #define STDNAME "C:\\DIRMAN.DAT"
- #define STACKMAX 20 /* Verzeichnisstapelgröße */
- #define HEAD "\nDIRMAN Version 1.02 (" \
- __DATE__ \
- ")\nCopyright (c) by Olaf Stoyke\n"
- #define PARAMERR "Usage: DIRMAN [filename] [/L|/P|/S].\n"
- #define NOTFOUND "%s not found.\n"
- #define NOCREAT "Cannot create %s.\n"
- #define OVERFLOW "Must delete last entry.\n"
- #define NENTRY "%d path name(s) in %s.\n"
- #define DIRERR "Cannot read/set current directory.\n"
- #define SAVEMSG "Writing %s to top of %s.\n"
- #define LOADMSG "Making %s to current directory.\n"
- /* ------------------------------------------------------ */
- /* Ende von DIRMAN.H */