I just installed Masm from Hutch's and just finish reading all the help files.
but having trouble assembling files in Izeclions tuts. It keeps telling me wc undefined but I copy the code to see how masm work. Tried 2 assemble in Qeditor.

What could be wrong?

ex:
LOCAL wc:wndclassex
LOCAL msg:MSG
LOCAL hwnd:msg
mov wc.cbSize,SIZEOF,WNDCLASSEX


the rest is in tut-3
Posted on 2003-02-09 13:41:34 by Tweak

I just installed Masm from Hutch's and just finish reading all the help files.
but having trouble assembling files in Izeclions tuts. It keeps telling me wc undefined but I copy the code to see how masm work. Tried 2 assemble in Qeditor.

What could be wrong?



the rest is in tut-3


Remove the comma after sizeof.
Posted on 2003-02-09 15:07:39 by bazik
As Bazik said, remove the comma after sizeof and shouldn't wndclassex be all capitals?

LOCAL wc:wndclassex
should be
LOCAL wc:WNDCLASSEX
Posted on 2003-02-09 19:15:07 by Gunner
thx I'll try that !!
I thought I forget to download some lib
Posted on 2003-02-09 20:53:12 by Tweak