home *** CD-ROM | disk | FTP | other *** search
- /*=============================================================================
-
- The INSTALL program source code, object code, sample script files,
- executable program, and documentation are subject to copyright
- protection under the laws of the United States and other countries.
-
- This software is licensed, not sold, and may only be redistributed
- in executable format and only in accordance with the provisions of
- the INSTALL Source Code License Agreement.
-
- INSTALL is Copyright(C) 1987-1990 by Knowledge Dynamics Corp
- Highway Contract 4 Box 185-H, Canyon Lake, TX (USA) 78133-3508
- 512-964-3994 (Voice) 512-964-3958 (24-hr FAX)
-
- All rights reserved worldwide.
-
- ===============================================================================
-
- FILENAME:
- control.h
-
- AUTHOR:
- eric jon heflin
-
- PUBLIC FUNCTIONS:
- n/a
-
- LOCAL FUNCTIONS:
- n/a
-
- DESCRIPTION:
- This file contains #defines for control characters (e.g. '\x1b' is
- defined as ESC).
-
- REVISION HISTORY:
- DATE: AUTHOR: DESCRIPTION OF CHANGES:
- 891211 allyn jordan documentation
- 900102 ejh Cosmetic changes.
-
- ==============================================================================*/
-
- #ifndef CONTROL_H
-
- # define CONTROL_H
-
- /* control characters */
- # define SOH ((byte)'\x1') /* start of header */
- # define STX ((byte)'\x2') /* start of text */
- # define ETX ((byte)'\x3') /* */
- # define EOT ((byte)'\x4') /* end of text */
- # define ENQ ((byte)'\x5') /* enquire */
- # define ACK ((byte)'\x6') /* acknowledge */
- # define BEL ((byte)'\x7')
- # define BS ((byte)'\x8')
- # define HT ((byte)'\x9')
- # define LF ((byte)'\xa')
- # define VT ((byte)'\xb')
- # define FF ((byte)'\xc')
- # define CR ((byte)'\xd')
- # define SO ((byte)'\xe')
- # define SI ((byte)'\xf')
- # define DLE ((byte)'\x10')
- # define DC1 ((byte)'\x11')
- # define DC2 ((byte)'\x12')
- # define DC3 ((byte)'\x13')
- # define DC4 ((byte)'\x14')
- # define NAK ((byte)'\x15') /* negative acknowledge */
- # define SYN ((byte)'\x16') /* sync */
- # define CAN ((byte)'\x18') /* cancel */
- # define EM ((byte)'\x19')
- # define SUB ((byte)'\x1a')
- # define ESC ((byte)'\x1b')
- # define FS ((byte)'\x1c')
- # define GS ((byte)'\x1d')
- # define RS ((byte)'\x1e')
- # define US ((byte)'\x1f')
-
- #endif /* CONTROL_H */
-
- /* end-of-file */
-