diff options
Diffstat (limited to 'v4.0/src/CMD/FDISK/PROFILE.H')
| -rw-r--r-- | v4.0/src/CMD/FDISK/PROFILE.H | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/v4.0/src/CMD/FDISK/PROFILE.H b/v4.0/src/CMD/FDISK/PROFILE.H new file mode 100644 index 0000000..a15b72b --- /dev/null +++ b/v4.0/src/CMD/FDISK/PROFILE.H | |||
| @@ -0,0 +1,44 @@ | |||
| 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 | \ No newline at end of file | ||