| Revision: | 1.2 |
| Committed: | Sun Jun 8 12:03:10 2003 UTC (22 years, 5 months ago) by schorsch |
| Content type: | text/plain |
| Branch: | MAIN |
| Changes since 1.1: | +6 -1 lines |
| Log Message: | Reduced compile warnings/errors on Windows. |
| # | Content |
|---|---|
| 1 | /* RCSid: $Id: plot.h,v 1.1 2003/02/22 02:07:26 greg Exp $ */ |
| 2 | /* |
| 3 | * Definitions for plotting routines |
| 4 | */ |
| 5 | |
| 6 | |
| 7 | #define NPATS 9 /* number of fill patterns */ |
| 8 | |
| 9 | #define PATSIZE 16 /* pattern size (square) */ |
| 10 | |
| 11 | |
| 12 | extern int dxsize, dysize; /* device size */ |
| 13 | |
| 14 | extern int pati[]; |
| 15 | |
| 16 | extern unsigned char pattern[][PATSIZE/8][PATSIZE]; /* fill patterns */ |
| 17 | |
| 18 | extern void set(int attrib, char *value); |
| 19 | extern void reset(int attrib); |
| 20 | extern void unset(int attrib); |
| 21 |