diff options
| author | 2024-04-25 21:24:10 +0100 | |
|---|---|---|
| committer | 2024-04-25 22:32:27 +0000 | |
| commit | 2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch) | |
| tree | 80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/CMD/FILESYS/MSGRET.H | |
| parent | Merge pull request #430 from jpbaltazar/typoptbr (diff) | |
| download | ms-dos-main.tar.gz ms-dos-main.tar.xz ms-dos-main.zip | |
Diffstat (limited to 'v4.0/src/CMD/FILESYS/MSGRET.H')
| -rw-r--r-- | v4.0/src/CMD/FILESYS/MSGRET.H | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/v4.0/src/CMD/FILESYS/MSGRET.H b/v4.0/src/CMD/FILESYS/MSGRET.H new file mode 100644 index 0000000..778c079 --- /dev/null +++ b/v4.0/src/CMD/FILESYS/MSGRET.H | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | /************************************************************************/ | ||
| 2 | /* MSGRET.H - This include file defines each message type */ | ||
| 3 | /* that can occur in FILESYS. The defines will */ | ||
| 4 | /* be used to build the proper message. */ | ||
| 5 | /* */ | ||
| 6 | /* Date : 10/29/87 */ | ||
| 7 | /************************************************************************/ | ||
| 8 | |||
| 9 | /************************************************************************/ | ||
| 10 | /* Message Retriever Standard Equates */ | ||
| 11 | /************************************************************************/ | ||
| 12 | |||
| 13 | #define PAUSE_RDR_MSG 0x000A | ||
| 14 | #define REDIR_MSG 0x000B | ||
| 15 | #define TITLE1 0x000C | ||
| 16 | #define TITLE2 0x000D | ||
| 17 | #define TITLE3 0x000E | ||
| 18 | #define NO_ENTRIES 0x000F | ||
| 19 | #define ERROR_RDR_MSG 0x0010 | ||
| 20 | |||
| 21 | #define Ext_Err_Class 0x0001 | ||
| 22 | #define Parse_Err_Class 0x0002 | ||
| 23 | #define Utility_Msg_Class 0x00ff | ||
| 24 | #define No_Handle 0xffff | ||
| 25 | #define No_Replace 0x0000 | ||
| 26 | #define Sublist_Length 0x000b | ||
| 27 | #define Reserved 0x0000 | ||
| 28 | #define Left_Align 0x0000 | ||
| 29 | #define Right_Align 0x0080 | ||
| 30 | #define Char_Field_Char 0x0000 | ||
| 31 | #define Char_Field_ASCIIZ 0x0010 | ||
| 32 | #define Unsgn_Bin_Byte 0x0011 | ||
| 33 | #define Unsgn_Bin_Word 0x0021 | ||
| 34 | #define Unsgn_Bin_DWord 0x0031 | ||
| 35 | #define Sgn_Bin_Byte 0x0012 | ||
| 36 | #define Sgn_Bin_Word 0x0022 | ||
| 37 | #define Sgn_Bin_DWord 0x0032 | ||
| 38 | #define Bin_Hex_Byte 0x0013 | ||
| 39 | #define Bin_Hex_Word 0x0023 | ||
| 40 | #define Bin_Hex_DWord 0x0033 | ||
| 41 | #define No_Input 0x0000 | ||
| 42 | #define STDIN 0x0000 | ||
| 43 | #define STDOUT 0x0001 | ||
| 44 | #define STDERR 0x0002 | ||
| 45 | #define Blank 0x0020 | ||
| 46 | |||
| 47 | #define SubCnt0 0x0000 | ||
| 48 | #define SubCnt1 0x0001 | ||
| 49 | #define SubCnt2 0x0002 | ||
| 50 | #define SubCnt3 0x0003 | ||
| 51 | #define SubCnt4 0x0004 | ||
| 52 | #define SubCnt5 0x0005 | ||
| 53 | |||