| 11 |
|
*/ |
| 12 |
|
|
| 13 |
|
#include <stdio.h> |
| 14 |
< |
|
| 14 |
> |
#include <math.h> |
| 15 |
|
#include <sys/ioctl.h> |
| 16 |
|
|
| 17 |
|
#include <X11/Xlib.h> |
| 78 |
|
x11_comout, x11_comin, x11_flush, 1.0 |
| 79 |
|
}; |
| 80 |
|
|
| 81 |
+ |
static int getpixels(), xnewcolr(), freepixels(), resizewindow(), |
| 82 |
+ |
getevent(), getkey(), fixwindow(), x11_getc(); |
| 83 |
+ |
static unsigned long true_pixel(); |
| 84 |
|
|
| 85 |
+ |
|
| 86 |
|
struct driver * |
| 87 |
|
x11_init(name, id) /* initialize driver */ |
| 88 |
|
char *name, *id; |
| 243 |
|
COLOR col; |
| 244 |
|
int xmin, ymin, xmax, ymax; |
| 245 |
|
{ |
| 242 |
– |
extern int xnewcolr(); /* pixel assignment routine */ |
| 243 |
– |
extern unsigned long true_pixel(); |
| 246 |
|
unsigned long pixel; |
| 247 |
|
|
| 248 |
|
if (!mapped) |
| 270 |
|
x11_comin(inp, prompt) /* read in a command line */ |
| 271 |
|
char *inp, *prompt; |
| 272 |
|
{ |
| 271 |
– |
extern int x11_getc(); |
| 272 |
– |
|
| 273 |
|
if (prompt != NULL) |
| 274 |
|
if (fromcombuf(inp, &x11_driver)) |
| 275 |
|
return; |