1 /* BEGIN INCLUDE FILE ... mlsys_search_options.incl.pl1 */
 2 /* Created:  June 1983 by G. Palter */
 3 
 4 /* Options for the mlsys_utils_$search_message entrypoint */
 5 
 6 dcl  1 search_options aligned based (search_options_ptr),
 7        2 version character (8) unaligned,
 8        2 flags,
 9          3 regexp_search bit (1) unaligned,                 /* ON => perform a qedx regular expression search;
10                                                                OFF => perform an ordinary string search */
11          3 case_insensitive bit (1) unaligned,              /* ON => perform the search without regard to case */
12          3 search_envelope bit (1) unaligned,               /* ON => search the message envelope */
13          3 search_header bit (1) unaligned,                 /* ON => search the message header */
14          3 search_redistributions_list bit (1) unaligned,   /* ON => search the redistributions list */
15          3 search_body bit (1) unaligned,                   /* ON => search the message body */
16          3 mbz bit (30) unaligned;                          /* must be set to ""b by the caller */
17 
18 dcl  SEARCH_OPTIONS_VERSION_2 character (8) static options (constant) initial ("mlssrch2");
19 
20 dcl  search_options_ptr pointer;
21 
22 /* END INCLUDE FILE ... mlsys_search_options.incl.pl1 */