Microsoft Windows Caches Five Display Contexts

Last reviewed: July 22, 1997
Article ID: Q74291
3.00 3.10 WINDOWS kbprg

The information in this article applies to:

  • Microsoft Windows Software Development Kit (SDK) for Windows versions 3.1 and 3.0

The Microsoft Windows graphical environment maintains an internal cache of five display contexts (DCs) which are shared by all applications in the system. An application retrieves one of these DCs when it calls the BeginPaint(), GetDC(), or GetWindowDC() functions. When an application retrieves a DC, Windows marks the DC as in use and does not allow another application to retrieve it. When an application has finished using a DC, it must return the DC to the cache which makes the DC available to another application. Two APIs return a DC to the cache: EndPaint() function (to match BeginPaint()) and the ReleaseDC() function (to match GetDC() or GetWindowDC()).

If an application fails to return DCs to the DC cache correctly, the cache becomes empty, and subsequent calls to BeginPaint(), GetDC(), and GetWindowDC() fail. Because most applications do not check to be sure that the DC they retrieve is valid, they attempt to use an invalid DC in a graphics device interface (GDI) call, which causes a FatalExit error.

To avoid this problem, be sure to return DCs to the cache correctly and check the value returned by BeginPaint(), GetDC(), and GetWindowDC() to ensure that a valid DC is available.


Additional reference words: 3.00 3.10
KBCategory: kbprg
KBSubcategory: GdiDc
Keywords : kb16bitonly


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 22, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.