| 607 | } |
| 608 | |
| 609 | void ReleaseConsoleFontDC(void) |
| 610 | { |
| 611 | if (g_hConsoleFontDC) |
| 612 | { |
| 613 | DeleteDC( g_hConsoleFontDC ); |
| 614 | g_hConsoleFontDC = NULL; |
| 615 | DeleteObject( g_hConsoleFontBitmap ); |
| 616 | g_hConsoleFontBitmap = NULL; |
| 617 | |
| 618 | delete [] g_hConsoleFontFramebufferinfo; |
| 619 | g_hConsoleFontFramebufferinfo = NULL; |
| 620 | g_hConsoleFontFramebits = NULL; |
| 621 | } |
| 622 | |
| 623 | DeleteObject( g_hConsoleBrushFG ); |
| 624 | g_hConsoleBrushFG = NULL; |
| 625 | DeleteObject( g_hConsoleBrushBG ); |
| 626 | g_hConsoleBrushBG = NULL; |
| 627 | } |
| 628 | |
| 629 | |
| 630 | void StretchBltMemToFrameDC(void) |