home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / pcc / v08n03 / netwrk.exe / WDPOST.ZIP / WDPOST.TAR / wdpost.dir / sample.drv / frameblk.equ < prev    next >
Text File  |  1988-06-21  |  678b  |  20 lines

  1. ; this structure is used to pass arguments to public routines.
  2. ; changes to this structure should ease the migration to other
  3. ; than the small program model.
  4. ;   the calling routine:
  5. ;    function(prm1, prm2, prm3, ...)
  6. ;   the structure deliberately is over generalized (too many parms) as
  7. ;   there is no penalty other than space consumed in the source.
  8. fb    STRUC
  9.      dw    ?            ; saved BP
  10.      dw    ?            ; return address (offset)
  11.     prm1 dw    ?            ; the first parameter
  12.     prm2 dw    ?            ; the second parameter
  13.     prm3 dw    ?            ; .. etc.
  14.     prm4 dw    ?            ; .. etc.
  15.     prm5 dw    ?            ; .. etc.
  16.     prm6 dw    ?            ; .. etc.
  17.     prm7 dw    ?            ; .. etc.
  18.     prm8 dw    ?            ; .. etc.
  19. fb    ENDS
  20.