The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: xiahan on April 06, 2012, 02:37:37 PM

Title: some questions about szText Macro
Post by: xiahan on April 06, 2012, 02:37:37 PM


          szText MACRO Name, Text:VARARG
                     LOCAL lbl
                           jmp lbl
                            Name db Text,0
                          lbl:
                     ENDM

              ....

            szText AboutMsg,"Minifile Version 1.0 Copyright ?1999",13,10, \
            "Steve Hutchesson < hutch@pbq.com.au >"

            szText AboutTitle,"Assembler Minifile"
            invoke ShellAbout,hWin,ADDR AboutTitle,ADDR AboutMsg,hIcon



the Text:VARARG says this parameter is variable, and the AboutMsg seems has 4 parameters, how dose the db work,
Title: Re: some questions about szText Macro
Post by: dedndave on April 06, 2012, 02:50:14 PM
VARARG says there are a variable number of arguments
Title: Re: some questions about szText Macro
Post by: xiahan on April 06, 2012, 02:59:06 PM
Quote from: dedndave on April 06, 2012, 02:50:14 PM
VARARG says there are a variable number of arguments
Oh,I misunderstood its meaning
Title: Re: some questions about szText Macro
Post by: hutch-- on April 07, 2012, 12:39:41 AM
 xiahan,

The purpose of that macro is to write text data directly into the code section. It is effectively read only unless you change the attributes of the executable file in its link options. The reason for the VARARG is so you can pass text that has "," in it without the old macro parser stopping at the "," character.