Skip to content

Instantly share code, notes, and snippets.

@z4none
Created August 2, 2020 01:52
Show Gist options
  • Save z4none/a63ac86c18284b09faba6999bd1a0c08 to your computer and use it in GitHub Desktop.
Save z4none/a63ac86c18284b09faba6999bd1a0c08 to your computer and use it in GitHub Desktop.
ATL load image from res #atl,#wtl
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
#define CURRENT_HINSTANCE ((HINSTANCE)&__ImageBase)
CImage image;
image.LoadFromResource(CURRENT_HINSTANCE, IDB_BG);
m_bg.Attach(image.Detach());
m_dc_bg.CreateCompatibleDC();
m_dc_bg.SelectBitmap(m_bg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment