1
2
3
4
5
6
7
8
9
10
11
12 dcl (MSG_SELECT_PROMPT char(40) init("Which message(s) do you wish to select? "),
13 DEL_MSG_SELECT_PROMPT char(63) init ("Which message(s) do you wish to retrieve? (for list, enter ??) "),
14 NONEXIST_MSG char(66) init("The following messages either do not exist or have been discarded:"),
15 DEL_NONEXIST_MSG char(70) init("The following messages either do not exist or have NOT been discarded:"),
16 CURR_SET_MSG char(70) init("This means that the set of current messages consists of the following:"),
17 CURR_DEL_SET_MSG char(58) init("This means that the following messages will be retrieved:"),
18 USE_SPEC_SET_PROMPT char(45) init("Do you wish to use these as current messages?"),
19 SEARCH_STR_PROMPT char(11) init("Search for:"),
20 UNDELETE_FINISHED_MSG char(24) init("Message^a ^a retrieved."),
21 MSG_LIST_MSG char(17) init("List of messages:"),
22 DATE_1_PROMPT char(23) init("Earliest date in range:"),
23 DATE_2_PROMPT char(21) init("Latest date in range:"),
24 DEL_MSG_LIST_MSG char(27) init("List of discarded messages:"))
25 int static options(constant);
26
27