]> wirehaze git hosting - MS-DOS.git/blob - v4.0/src/CMD/FDISK/PROFILE.H

wirehaze git hosting

MZ is back!
[MS-DOS.git] / v4.0 / src / CMD / FDISK / PROFILE.H
1
2 /* */
3 /****************************************************************************/
4 /* Define statements */
5 /****************************************************************************/
6 /* */
7
8 #define BEGIN {
9 #define END }
10 #define ESC 0x1B
11 #define NUL 0x00
12 #define NOT_FOUND 0xFF
13 #define DELETED 0xFF
14 #define INVALID 0xFF
15 #define FALSE (1==0)
16 #define TRUE !FALSE
17 #define CR 0x0D
18
19 /* */
20 /****************************************************************************/
21 /* Declare Global variables */
22 /****************************************************************************/
23 /* */
24
25
26
27
28 unsigned input_row;
29 unsigned input_col;
30 char insert[200];
31 char *pinsert = insert;
32
33
34 /* */
35 /****************************************************************************/
36 /* Subroutine Definitions */
37 /****************************************************************************/
38 /* */
39
40 void clear_screen(unsigned,unsigned,unsigned,unsigned);
41 void display(char far *);
42 char wait_for_ESC(void);
43
44 \1a