Hello,
Just a quick note of something I just noticed.
Masm32 windows.inc declares in CREATESTRUCT
ExStyle DWORD ?
However, the MSDN library has this structure as:
....
DWORD dwExStyle;
} CREATESTRUCT;
(CREATESTRUCT is what you get in lParam during
your WM_CREATE message.)
Just a quick note of something I just noticed.
Masm32 windows.inc declares in CREATESTRUCT
ExStyle DWORD ?
However, the MSDN library has this structure as:
....
DWORD dwExStyle;
} CREATESTRUCT;
(CREATESTRUCT is what you get in lParam during
your WM_CREATE message.)
well of course your gonna have to use what windows.inc uses... Windows doesn't really care what you call your variables, just as long as they are the right size. I know there are small differences with the SDK in the windows.inc file and some of them are intentional because of masm name conflicts. However a conflict with dwExStyle doesn't come to mind, maybe it is a typo? Just edit windows.inc hit compile and see if everything works ok.
Thanks for replying - as you suggested, I just stuck with what
MASM had. As long as it assembles, I'm happy :grin:
MASM had. As long as it assembles, I'm happy :grin: