Created
November 20, 2008 15:18
-
-
Save kevinw/27062 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ScreenHDC | |
{ | |
public: | |
ScreenHDC() { m_hdc = ::GetDC(NULL); } | |
~ScreenHDC() { ::ReleaseDC(NULL, m_hdc); } | |
operator HDC() const { return m_hdc; } | |
private: | |
HDC m_hdc; | |
DECLARE_NO_COPY_CLASS(ScreenHDC) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment