|
|
coherent
/*********************************************************************
* COPYRIGHT NOTICE *
**********************************************************************
* This software is copyright (C) 1982 by Pavel Curtis *
* *
* Permission is granted to reproduce and distribute *
* this file by any means so long as no fee is charged *
* above a nominal handling fee and so long as this *
* notice is always included in the copies. *
* *
* Other rights are reserved except as explicitly granted *
* by written permission of the author. *
* Pavel Curtis *
* Computer Science Dept. *
* 405 Upson Hall *
* Cornell University *
* Ithaca, NY 14853 *
* *
* Ph- (607) 256-4934 *
* *
* Pavel.Cornell@Udel-Relay (ARPAnet) *
* decvax!cornell!pavel (UUCPnet) *
*********************************************************************/
/*
** $Header: /var/lib/cvsd/repos/coherent/coherent/g/usr/lib/ncurses/object.h,v 1.1.1.1 2019/05/29 04:56:35 root Exp $
**
** object.h - Format of compiled terminfo files
**
** Header (12 bytes), containing information given below
** Names Section, containing the names of the terminal
** Boolean Section, containing the values of all of the
** boolean capabilities
** A null byte may be inserted here to make
** sure that the Number Section begins on an
** even word boundary.
** Number Section, containing the values of all of the numeric
** capabilities, each as a short integer
** String Section, containing short integer offsets into the
** String Table, one per string capability
** String Table, containing the actual characters of the string
** capabilities.
**
** NOTE that all short integers in the file are stored using VAX/PDP-style
** byte-swapping, i.e., least-significant byte first. The code in
** read_entry() automatically fixes this up on machines which don't use
** this system (I hope).
**
** $Log: object.h,v $
** Revision 1.1.1.1 2019/05/29 04:56:35 root
** coherent
**
* Revision 1.7 93/04/12 14:11:00 bin
* udo: 3rd color update
*
* Revision 1.2 92/04/13 14:40:12 bin
* *** empty log message ***
*
* Revision 2.1 82/10/25 14:49:50 pavel
* Added Copyright Notice
*
* Revision 2.0 82/10/24 15:18:19 pavel
* Beta-one Test Release
*
* Revision 1.3 82/08/23 22:31:12 pavel
* The REAL Alpha-one Release Version
*
* Revision 1.2 82/08/19 19:10:18 pavel
* Alpha Test Release One
*
* Revision 1.1 82/08/12 18:48:55 pavel
* Initial revision
*
**
*/
#define MAGIC 0432
struct header
{
short magic; /* Magic Number (0432) */
short name_size; /* Size of names section */
short bool_count; /* Number of booleans */
short num_count; /* Number of numbers */
short str_count; /* Number of strings */
short str_size; /* Size of string table */
};
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.