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