Distributed Systems Network Management (DSNM) Subsystem Interface Development Guide
DSNM Library Services
Distributed Systems Network Management (DSNM) Subsystem Interface Development 
Guide—109759 A-29
_CI^REPLYLENGTH
_CI^REPLYLENGTH
_CI^REPLYLENGTH is the type INT length of the reply buffer containing information 
read from a CI on completion of a _SEND^CI.
replylength output 
INT
is the length of the reply buffer.
ciid input 
is the CIID structure (declared with _CI^ID) identifying an open CI.
Example
In the following example, replylen is the length of the reply buffer containing data 
returned by the most-recently completed CI I/O operation:
INT replylen;
IF _ON (_LAST^EVENTS, _EV^IODONE)
 THEN
 BEGIN
 replylen := _CI^REPLYLEN (_LAST^CI^ID);
 ...
 END;
replylength := _CI^REPLYLENGTH ( ciid )










