Lothar
Lothar

Reputation: 13093

How can i draw a window content into a bitmap (using Win32 C++)

I need this for some animation effects and i remember there is a window message for doing this. Something like WM_PAINT but it deliveres a device context with the message.

But i can't find it anymore on MSDN.

Upvotes: 0

Views: 316

Answers (1)

Chris Becke
Chris Becke

Reputation: 36131

Youre thinking of WM_PRINT perhaps? WM_PRINT is passed an HDC in wParam.

Upvotes: 1

Related Questions