home *** CD-ROM | disk | FTP | other *** search
- /* SMiLE -- Simple MIni Line Editor
- Copyright (C) 1989 By Alejandro Liu
- You are given permission to Freely Copy and distribute this program
- in its unmodifed form provided that this copyright notice is included.
- */
-
- #define PREV_L 16
- #define NEXT_L 14
- #define INSER_L 13
- #define INSERT_L 10
- #define LEFT_C 2
- #define RIGHT_C 6
- #define DEL_00 8
- #define DEL_01 127
- #define DEL_02 20
- #define KILL_L 11
- #define MSG_LST 12
- #define PREVIEW 22
- #define EXIT 24
- #define MENU 27
- #define DOTKEY0 '.'
- #define DOTKEY1 '/'
- #define DOTSAV 's'
- #define DOTHLP 'h'
- #define DOTABT 'a'
- #define DOTLST 'l'
- #define DOTPVW 'v'
- #define DOTWRW 'w'
- #define DOTFNY 'f'
- #define DOTSPC 'c'
- #define DOTCWD 'n'
-
- struct ED_line {
- struct ED_line *previous;
- struct ED_line *next;
- char len;
- char *data;
- };
-
- typedef struct ED_line ed_line;
-
- #define FULL_MENU 0
- #define DOT_MENU 1
-
- #define NORMAL_SAVE 1
- #define QUICK_SAVE 2
- #define ABORT 3
-