News:

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

Problem with szappend documentation

Started by MichaelW, January 04, 2005, 10:20:34 PM

Previous topic - Next topic

MichaelW

In MASM32LIB.HLP, in the documentation for szappend, the descriptions for the string and buffer parameters are reversed.
eschew obfuscation

hutch--

Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

brethren

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