File: dbinary.h

package info (click to toggle)
graywolf 0.1.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 6,424 kB
  • sloc: ansic: 84,358; sh: 216; awk: 36; makefile: 22
file content (23 lines) | stat: -rw-r--r-- 737 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ----------------------------------------------------------------- 
"@(#) dbinary.h (Yale) version 1.3 8/28/90"
FILE:	    dbinary.h                                       
DESCRIPTION:include file for binary format for graphics routines
CONTENTS:   typedefs for binary format.
DATE:	    Mar 21, 1989 - moved from draw.h
REVISIONS:  
----------------------------------------------------------------- */
#ifndef DBINARY_H
#define DBINARY_H

/* data record for draw binary files */
typedef struct {
    INT          x1 ;
    INT          x2 ;
    INT     	 y1 ;
    INT     	 y2 ;
    UNSIGNED_INT ref ; /* may be referenced by this number */
    UNSIGNED_INT color ;
    UNSIGNED_INT label ;
} DATABOX, *DATAPTR ;

#endif /* DBINARY_H */