Ask the user for a player name. */
| 694 | |
| 695 | /* Ask the user for a player name. */ |
| 696 | void |
| 697 | mswin_askname(void) |
| 698 | { |
| 699 | logDebug("mswin_askname()\n"); |
| 700 | |
| 701 | if (mswin_getlin_window("Who are you?", svp.plname, PL_NSIZ) == IDCANCEL) { |
| 702 | bail("bye-bye"); |
| 703 | /* not reached */ |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | /* Does window event processing (e.g. exposure events). |
| 708 | A noop for the tty and X window-ports. |
nothing calls this directly
no test coverage detected