home *** CD-ROM | disk | FTP | other *** search
-
-
-
- %%%%%%%%%% end prepcomp generated declarations %%%%%%%%%%%%%%%%%%%%
-
-
- :- module specs_help.
-
- :- visible disp1 / 3.
-
-
- get_specs_help :-
- log_nl,
- open_if_possible( $specs.hlp$ ,
- $ can not be opened.$,
- Inhandle),
- !,
- log_write(
- $~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~$),
- log_nl,
- process_file_lines( LineVar,
- Inhandle,
- not_a_file_handle,
- disp1(Inhandle,
- not_a_file_handle,
- LineVar ) ),
- log_write($Press any key to continue...$),
- flush,
- get0_noecho(_),
- log_nl.
-
- disp1(Inhandle,
- _ ,
- Line ) :-
- log_write(Line), log_nl.