| 219 | } |
| 220 | |
| 221 | HBITMAP MyCreateBitmap(int nWidth, int nHeight, UINT nPlanes, UINT nBitCount, const void* lpBits) |
| 222 | { |
| 223 | if (nWidth == 1 && nHeight == 1) |
| 224 | return g_funCreateBitmap(nWidth, nHeight, nPlanes, nBitCount, lpBits); |
| 225 | |
| 226 | nHeight = g_textRcSize.cy; |
| 227 | return CreateAlphaBitmap(nWidth, nHeight); |
| 228 | } |
| 229 | |
| 230 | HRESULT CTopLevelWindow_UpdateWindowVisuals(CTopLevelWindow* This) |
| 231 | { |
nothing calls this directly
no test coverage detected