| 30 |
|
static void disp_result(int type, int nbytes, char *p); |
| 31 |
|
|
| 32 |
|
|
| 33 |
< |
extern void |
| 33 |
> |
void |
| 34 |
|
disp_open( /* open the named display driver */ |
| 35 |
|
char *dname |
| 36 |
|
) |
| 98 |
|
} |
| 99 |
|
|
| 100 |
|
|
| 101 |
< |
extern void |
| 101 |
> |
void |
| 102 |
|
disp_packet( /* display a packet */ |
| 103 |
< |
register PACKHEAD *p |
| 103 |
> |
PACKHEAD *p |
| 104 |
|
) |
| 105 |
|
{ |
| 106 |
|
disp_result(DS_BUNDLE, packsiz(p->nr), (char *)p); |
| 107 |
|
} |
| 108 |
|
|
| 109 |
|
|
| 110 |
< |
extern int |
| 110 |
> |
int |
| 111 |
|
disp_check( /* check display process */ |
| 112 |
|
int block |
| 113 |
|
) |
| 251 |
|
} |
| 252 |
|
|
| 253 |
|
|
| 254 |
< |
extern int |
| 254 |
> |
int |
| 255 |
|
disp_close(void) /* close our display process */ |
| 256 |
|
{ |
| 257 |
|
if (dpout == NULL) |