Ask the user for a player name. */
| 641 | |
| 642 | /* Ask the user for a player name. */ |
| 643 | void |
| 644 | mswin_askname(void) |
| 645 | { |
| 646 | logDebug("mswin_askname()\n"); |
| 647 | |
| 648 | if (mswin_getlin_window("who are you?", svp.plname, PL_NSIZ) == IDCANCEL) { |
| 649 | bail("bye-bye"); |
| 650 | /* not reached */ |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | /* Does window event processing (e.g. exposure events). |
| 655 | A noop for the tty and X window-ports. |
nothing calls this directly
no test coverage detected