| 552 | Copy(&ncm.lfStatusFont); |
| 553 | } |
| 554 | void SetMessageBoxFont() |
| 555 | { |
| 556 | NONCLIENTMETRICS ncm = { 0 }; |
| 557 | ncm.cbSize = sizeof(ncm); |
| 558 | ::SystemParametersInfo(SPI_GETNONCLIENTMETRICS, sizeof(ncm), &ncm, 0); |
| 559 | Copy(&ncm.lfMessageFont); |
| 560 | } |
| 561 | void Copy(const LOGFONT* lf) |
| 562 | { |
| 563 | ATLASSERT(lf); |
nothing calls this directly
no outgoing calls
no test coverage detected