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 >
Wrap
Text File
|
1988-06-21
|
678b
|
20 lines
; this structure is used to pass arguments to public routines.
; changes to this structure should ease the migration to other
; than the small program model.
; the calling routine:
; function(prm1, prm2, prm3, ...)
; the structure deliberately is over generalized (too many parms) as
; there is no penalty other than space consumed in the source.
fb STRUC
dw ? ; saved BP
dw ? ; return address (offset)
prm1 dw ? ; the first parameter
prm2 dw ? ; the second parameter
prm3 dw ? ; .. etc.
prm4 dw ? ; .. etc.
prm5 dw ? ; .. etc.
prm6 dw ? ; .. etc.
prm7 dw ? ; .. etc.
prm8 dw ? ; .. etc.
fb ENDS