I've seen the following line generated by Prostart but I can't find the
macro in any of MASM32's help files or in Iczelion's tutorials.
STRING szClassName,"Prostart_Class"
Where can I get more info on its implementation?
iaNac,
Welcome on board. The STRING macro is in the MACROS.ASM file in the macros directory in masm32. It effectively does this.
.data
szClassName db "Prostart_Class",0 ; note zero terminator
.code
hutch,
Thanks, I hadn't opened that file until you pointed it out. Got some more reading to do now.