| 310 | } |
| 311 | |
| 312 | int |
| 313 | amii_msgborder(struct Window *w) |
| 314 | { |
| 315 | register int bottom; |
| 316 | |
| 317 | /* There is a one pixel border at the borders, so subtract two */ |
| 318 | bottom = w->Height - w->BorderTop - w->BorderBottom - 2; |
| 319 | bottom /= w->RPort->TxHeight; |
| 320 | if (bottom > 0) |
| 321 | --bottom; |
| 322 | return (bottom); |
| 323 | } |
| 324 | |
| 325 | void |
| 326 | outmore(struct amii_WinDesc *cw) |
no outgoing calls
no test coverage detected