ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/xtwind.h
Revision: 2.1
Committed: Tue Nov 12 16:54:36 1991 UTC (33 years, 5 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.1: +0 -0 lines
Log Message:
updated revision number for release 2.0

File Contents

# User Rev Content
1 greg 1.1 /* Copyright (c) 1987 Regents of the University of California */
2    
3     /* SCCSid "$SunId$ LBL" */
4    
5     /*
6     * xtwind.h - header for X text window routines.
7     *
8     * 10/30/87
9     */
10    
11     #define LEFTMAR 2 /* left margin width */
12    
13     typedef struct {
14     Window w; /* window */
15     FontInfo f; /* font information */
16     short nc, nr; /* text size */
17     char **lp; /* null-terminated lines */
18     short c, r; /* current position */
19     short cursor; /* cursor type */
20     } TEXTWIND; /* a text window */
21    
22     #define TNOCURS 0
23     #define TBLKCURS 1
24    
25     extern TEXTWIND *xt_open();