þa‹Rþdþwÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþ mP9þhý oPþ nSystem-wide$COMPACT XformsData: DO; $NOLIST $INCLUDE (`w`Incs`PlmLits.Inc~Text~) $LIST /* Xmodem Options values */ DECLARE RTSactive WORD PUBLIC INITIAL (1), DelayAfterRTS WORD PUBLIC INITIAL (0), RTSdelayChoice WORD PUBLIC INITIAL (2), RTSdelayPeriod WORD PUBLIC INITIAL (300), WaitForDCD WORD PUBLIC INITIAL (2), XmitTries WORD PUBLIC INITIAL (8), XmitTriesChoice WORD PUBLIC INITIAL (2), XmitTriesNumber WORD PUBLIC INITIAL (8), FECused WORD PUBLIC INITIAL (2), packetDataLen WORD PUBLIC INITIAL (128), preRTSdelay WORD PUBLIC INITIAL (0), preRTSdelayChoice WORD PUBLIC INITIAL (2), preRTSdelayPeriod WORD PUBLIC INITIAL (100); /* Xmodem Options form */ DECLARE optionsFormItemCount LIT '7'; DECLARE optionsFormRowSize LIT '98'; DECLARE optionsFormLabelsAndChoices (*) BYTE INITIAL ('?RTS active~Always (default)~Only while sending~|', '#Delay after RTS~Hundredth(s) of a second~None (default)~|', '?Wait for DCD~Required low before sending~Ignore~|', '#Tries per Packet~Enter a Number~Default (8)~|', '?Foreward Error Correction~Yes~No~|', '#Data Bytes per Packet~Enter a Number~|', '#Delay before RTS~Hundredth(s) of a second~None (default)~|'); DECLARE theOptionsForm STRUCTURE (form POINTER, numItems INTEGER, labelsAndChoices POINTER, choiceLines INTEGER, rows (optionsFormRowSize) BYTE) PUBLIC DATA (nullPtr, /* form */ optionsFormItemCount, /* numItems */ @optionsFormLabelsAndChoices, /* items */ 1); /* choiceLines */ END XformsData;