News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

mdi children strob when resizing. why?

Started by xandaz, November 06, 2020, 05:17:24 AM

Previous topic - Next topic

hutch--

WNDCLASS is just a macro for WNDCLASSEX, WNDCLASS was used in Win16 and it has been maintained via the macro for backwards compatibility.

jj2007

A macro?

WNDCLASSA STRUCT
  style             DWORD      ?
  lpfnWndProc       DWORD      ?
  cbClsExtra        DWORD      ?
  cbWndExtra        DWORD      ?
  hInstance         DWORD      ?
  hIcon             DWORD      ?
  hCursor           DWORD      ?
  hbrBackground     DWORD      ?
  lpszMenuName      DWORD      ?
  lpszClassName     DWORD      ?
WNDCLASSA ENDS
...
WNDCLASS  equ  <WNDCLASSA>

hutch--

Yerp,

But not a MASM macro, its built into the DLL that provides WNDCLASSEX.