/* * Variable module for NRO * * Originally by Stephen L. Browning, 5723 North Parker Avenue * Indianapolis, Indiana 46220 * * Transformed beyond immediate recognition, and * adapted for Amiga by Olaf Seibert, KosmoSoft * * Vossendijk 149-1 (study) Beek 5 (home) * 5634 TN Nijmegen 5815 CS Merselo * The Netherlands The Netherlands * Phone: * (...-31)80561045 (...-31)4786205 * or 080-561045 04786-205 * * This program is NOT in the public domain. It may, however * be distributed only at no charge, and this notice must be * included unaltered. */ #include #include "nro.h" #define EXTERN #include "nroxtrn.h" #define CSI 0x9B static uchar cancel[] = { CSI, '0', 'm', 0 }; static uchar bo[] = { CSI, '1', 'm', 0 }; static uchar it[] = { CSI, '3', 'm', 0 }; static uchar ul[] = { CSI, '4', 'm', 0 }; static uchar boit[] = { CSI, '1', ';', '3', 'm', 0 }; static uchar boul[] = { CSI, '1', ';', '4', 'm', 0 }; static uchar itul[] = { CSI, '4', ';', '3', 'm', 0 }; static uchar boitul[] = { CSI, '1', ';', '4', ';', '3', 'm', 0 }; uchar *commseq[] = { cancel, bo, it, boit, ul, boul, itul, boitul }; static uchar KosmoSoftID[] = "(@)# Copyright (C) 1988 by Olaf Seibert.\ May be distributed for free only.\n";