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/SELECT/SELECT.INC | |
| 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/SELECT/SELECT.INC')
| -rw-r--r-- | v4.0/src/SELECT/SELECT.INC | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/v4.0/src/SELECT/SELECT.INC b/v4.0/src/SELECT/SELECT.INC new file mode 100644 index 0000000..855278b --- /dev/null +++ b/v4.0/src/SELECT/SELECT.INC | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | ;-----------------------------------------------------------------------------+ | ||
| 2 | ; SELECT.INC : | ||
| 3 | ; : | ||
| 4 | ; : | ||
| 5 | ; Dialog Equates : | ||
| 6 | ; : | ||
| 7 | ; These values will eventually be defined by the dialog manager : | ||
| 8 | ; : | ||
| 9 | ;-----------------------------------------------------------------------------+ | ||
| 10 | ; | ||
| 11 | ; Help ID equates | ||
| 12 | ; | ||
| 13 | HCB_KEYS EQU 1 ;AN000;help on keys text | ||
| 14 | HCB_HELP EQU 2 ;AN000;help on help text | ||
| 15 | ; | ||
| 16 | ; Color ID equates | ||
| 17 | ; | ||
| 18 | CLR_CLR EQU 1 ;AN000;shipped text mode color index | ||
| 19 | CLR_MON EQU 2 ;AN000;shipped monochrome color index | ||
| 20 | ; | ||
| 21 | ; Sound equates | ||
| 22 | ; | ||
| 23 | SND_DURA EQU 40000 ;AN000;duration of error beep | ||
| 24 | SND_FREQ EQU 440 ;AN000;frequency of error beep | ||
| 25 | ; | ||
| 26 | ; Size equates | ||
| 27 | ; | ||
| 28 | MAX_MEMPAR EQU 0F7FH ;AC091;SEH reduce area to 62K to help 256K mem problem;AN000;size of buffer in 16 byte paraghp (64KB) | ||
| 29 | MAX_MEMLVB EQU 012BH ;AN000;size of buffer in 16 byte paraghp (4240 BYTES) | ||
| 30 | MAX_RETKSZ EQU 50 ;AN000;max # of bytes in return key buff | ||
| 31 | MAX_HELPSZ EQU 2000H ;AN000;max # of bytes in help text buff (8KB) | ||
| 32 | MAX_PANNUM EQU 98 ;AC111;JW ;max num of panels possible in mem | ||
| 33 | MAX_SCRNUM EQU 28 ;AC111;JW ;max num of scroll possible in mem | ||
| 34 | MAX_CHDQUE EQU 2 ;AN000;max # of child queues to save | ||
| 35 | MAX_PANQUE EQU 5 ;AN000;max # of panel queues to save | ||
| 36 | MAX_NUMCHD EQU 5 ;AN000;max # of parent panels queued | ||
| 37 | MAX_NUMPAN EQU 5 ;AN000;max # of child panels queued | ||
| 38 | MAX_CLRECD EQU 12 ;AN000;num of bytes per PCPANEL color rc | ||
| 39 | ; | ||
| 40 | ; Keystroke equates | ||
| 41 | ; | ||
| 42 | KEY_HELP EQU 3B00H ;AN000;F1=Help | ||
| 43 | KEY_SWIT EQU 3C00H ;AN000;F2=Switch | ||
| 44 | KEY_INDX EQU 3F00H ;AN000;F5=Index | ||
| 45 | KEY_KEYS EQU 4300H ;AN000;F9=Keys | ||
| 46 | KEY_SELT EQU 000DH ;AN000;Enter | ||
| 47 | KEY_QUIT EQU 001BH ;AN000;Esc=Quit | ||
| 48 | ; | ||
| 49 | ; Miscellaneous equates | ||
| 50 | ; | ||
| 51 | VECSEGLEN EQU 2 ;AN000;vector segment length | ||
| 52 | VECOFFLEN EQU 2 ;AN000;vector offset length | ||
| 53 | |||
| 54 | INCLUDE PCEQUATE.INC ;AN000; | ||