The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: MichaelW on January 04, 2005, 10:20:34 PM

Title: Problem with szappend documentation
Post by: MichaelW on January 04, 2005, 10:20:34 PM
In MASM32LIB.HLP, in the documentation for szappend, the descriptions for the string and buffer parameters are reversed.
Title: Re: Problem with szappend documentation
Post by: hutch-- on January 05, 2005, 01:12:34 AM
Thanks.  :thumbu
Title: Re: Problem with szappend documentation
Post by: brethren on March 15, 2011, 09:53:25 PM
append$ MACRO string,buffer,location
        invoke szappend,reparg(string),buffer,location
        EXITM <eax>
      ENDM


thats the append$ macro and this is from szappend.asm
; ------------------------------------------------------
  ; string      the main buffer to append extra data to.
  ; buffer      the byte data to append to the main buffer
  ; location    current location pointer
  ; ------------------------------------------------------


so it should be
invoke szappend,string,reparg(buffer),location