WM_PAINT is a central message in the classic Microsoft Windows API.
I'm trying to hook a 3rd party app so that I can draw to its screen. Drawing to the screen …
c# setwindowshookex wm-paintI have read that I should never send WM_PAINT manually and should call InvalidateRect instead but didn't found anything …
c++ winapi windows-messages wm-paint