ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/x11twind.h
(Generate patch)

Comparing ray/src/rt/x11twind.h (file contents):
Revision 1.1 by greg, Tue Dec 19 12:54:32 1989 UTC vs.
Revision 2.4 by greg, Fri Apr 11 16:01:27 2003 UTC

# Line 1 | Line 1
1 < /* SCCSid "$SunId$ LBL" */
2 <
3 < /* Copyright (c) 1989 Regents of the University of California */
4 <
1 > /* RCSid $Id$ */
2   /*
3   *  xtwind.h - header for X text window routines.
4   *
# Line 12 | Line 9
9   *      9/26/88
10   */
11  
12 + #include "copyright.h"
13 +
14   #define LEFTMAR 2                       /* left margin width */
15  
16   typedef struct {
# Line 28 | Line 27 | typedef struct {
27   #define TNOCURS         0
28   #define TBLKCURS        1
29  
30 + #ifdef NOPROTO
31 +
32   extern TEXTWIND  *xt_open();
33 + extern void     xt_puts();
34 + extern void     xt_putc();
35 + extern void     xt_delete();
36 + extern void     xt_insert();
37 + extern void     xt_redraw();
38 + extern void     xt_clear();
39 + extern void     xt_move();
40 + extern int      xt_cursor();
41 + extern void     xt_close();
42 +
43 + #else
44 +
45 + extern TEXTWIND *xt_open(Display *dpy, Window parent,
46 +                        int x, int y, int width, int height,
47 +                        int bw, unsigned long fore, unsigned long back,
48 +                        char *fontname);
49 + extern void     xt_puts(char *s, TEXTWIND *t);
50 + extern void     xt_putc(int c, TEXTWIND *t);
51 + extern void     xt_delete(TEXTWIND *t, int r);
52 + extern void     xt_insert(TEXTWIND *t, int r);
53 + extern void     xt_redraw(TEXTWIND *t);
54 + extern void     xt_clear(TEXTWIND *t);
55 + extern void     xt_move(TEXTWIND *t, int r, int c);
56 + extern int      xt_cursor(TEXTWIND *t, int curs);
57 + extern void     xt_close(TEXTWIND *t);
58 +
59 + #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines