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
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
LOCAL wc:wndclassex
LOCAL msg:MSG
LOCAL hwnd:msg
mov wc.cbSize,SIZEOF,WNDCLASSEX
the rest is in tut-3
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.
As Bazik said, remove the comma after sizeof and shouldn't wndclassex be all capitals?
LOCAL wc:wndclassex
should be
LOCAL wc:WNDCLASSEX
LOCAL wc:wndclassex
should be
LOCAL wc:WNDCLASSEX
thx I'll try that !!
I thought I forget to download some lib
I thought I forget to download some lib