There is supposed to be a ClearScreen function in masm32. My app contains
include g:\prog\masm32\include\masm32.inc
includelib g:\prog\masm32\lib\masm32.lib
but the assembler gives "undefined symbol : ClearScreen"
What dumb error am I making?
Thanks,
Robert
Robert,
I has been there for a mighty long time, do you have a missing library component ?
his is the macro.
cls MACRO ;; clear screen
invoke ClearScreen
ENDM
The library component is clearscr.asm in the masm32 library.
he just isn't using it right
either:
cls
or
INVOKE ClearScreen
Thank you.
Actually the question was misguided.
All I needed was FillRect.