home *** CD-ROM | disk | FTP | other *** search
- /*
- * Display the initial welcome screen (to include all of the proper
- * acknowledgements). Press any key to continue.
- */
-
- #include <stdio.h>
- #include <curses.h>
-
- info(fd)
- int fd;
- {
- WINDOW *w_win, *newwin();
- /* display the welcome screen */
- w_win = newwin(23, 80, 0, 0);
-
- mvwaddstr(w_win, 2, 18, "PPPPPP CCCC OOOO MM MM MM MM");
- mvwaddstr(w_win, 3, 18, "P P C O O M M M M M M M M");
- mvwaddstr(w_win, 4, 18, "PPPPPP C O O M M M M M M");
- mvwaddstr(w_win, 5, 18, "P C O O M M M M");
- mvwaddstr(w_win, 6, 18, "P CCCC OOOO M M M M");
-
- mvwaddstr(w_win, 10, 5, "Pcomm is a public domain telecommunication program for Unix designed");
- mvwaddstr(w_win, 11, 5, "to operate similar to the popular MSDOS program, ProComm. ProComm (TM)");
- mvwaddstr(w_win, 12, 5, "is copyrighted by Datastorm Technologies, Inc. This is a completely");
- mvwaddstr(w_win, 13, 5, "new program and contains no ProComm source code.");
- mvwaddstr(w_win, 19, 45, "Emmet P Gray");
- mvwaddstr(w_win, 20, 45, "...ihnp4!uiucuxc!fthood!egray");
-
- wmove(w_win, 22, 79);
- wrefresh(w_win);
-
- wgetch(w_win);
- if (fd == -1) {
- werase(w_win);
- wrefresh(w_win);
- }
- delwin(w_win);
- return;
- }
-