MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / ReleaseConsoleFontDC

Function ReleaseConsoleFontDC

source/Debugger/Debugger_Display.cpp:609–627  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

607}
608
609void 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
630void StretchBltMemToFrameDC(void)

Callers 1

DebugDestroyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected