Important: The information in this document is obsolete and should not be used for new development.
ADB Operation Block
You use the ADB operation block to pass information to theADBOp
function if you call the function from assembly language. The ADB operation block is defined by theADBOpBlock
data type.
TYPE ADBOpBlock = RECORD dataBuffPtr: Ptr; {address of data buffer} opServiceRtPtr: Ptr; {pointer to device handler} opDataAreaPtr: Ptr; {pointer to optional data area} END; ADBOpBPtr = ^ADBOpBlock;
Field Description
dataBuffPtr
- A pointer to a variable-length data buffer. The first byte of the buffer must contain the buffer's length.
opServiceRtPtr
- A pointer to a completion routine.
opDataAreaPtr
- A pointer to an optional data area.