Guest User

Untitled

a guest
Oct 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. LRESULT CALLBACK wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
  2. {
  3. switch (uMsg)
  4. {
  5. case WM_NCACTIVATE:
  6. case WM_NCPAINT:
  7. {
  8. // DefWindowProc(hWnd, uMsg, wParam, lParam);
  9.  
  10. // Custom frame rendering will be done here
  11. return 0;
  12. }
  13. }
  14. return CallWindowProc(prevWmdProc, hWnd, uMsg, wParam, lParam);;
  15. }
Add Comment
Please, Sign In to add comment