News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Please help with STRING macro.

Started by iaNac, September 08, 2006, 02:10:34 AM

Previous topic - Next topic

iaNac

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?

hutch--

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
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

iaNac

hutch,

Thanks, I hadn't opened that file until you pointed it out.  Got some more reading to do now.