outrip(winid, int, when) -- The tombstone code. If you want the traditional code use genl_outrip for the value and check the #if in rip.c. */
| 1542 | genl_outrip for the value and check the #if in rip.c. |
| 1543 | */ |
| 1544 | void |
| 1545 | mswin_outrip(winid wid, int how, time_t when) |
| 1546 | { |
| 1547 | logDebug("mswin_outrip(%d, %d, %ld)\n", wid, how, (long) when); |
| 1548 | if ((wid >= 0) && (wid < MAXWINDOWS)) { |
| 1549 | DestroyWindow(GetNHApp()->windowlist[wid].win); |
| 1550 | GetNHApp()->windowlist[wid].win = mswin_init_RIP_window(); |
| 1551 | GetNHApp()->windowlist[wid].type = NHW_RIP; |
| 1552 | GetNHApp()->windowlist[wid].dead = 0; |
| 1553 | } |
| 1554 | genl_outrip(wid, how, when); |
| 1555 | } |
| 1556 | |
| 1557 | /* handle options updates here */ |
| 1558 | void |
nothing calls this directly
no test coverage detected