| 1 |
– |
/* Copyright (c) 1991 Regents of the University of California */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* Send Targa 16-bit files to PC animation system. |
| 6 |
|
* |
| 9 |
|
|
| 10 |
|
#include <stdio.h> |
| 11 |
|
|
| 12 |
+ |
#include "rtprocess.h" |
| 13 |
|
#include "client/clnt.h" |
| 16 |
– |
|
| 14 |
|
#include "targa.h" |
| 15 |
|
|
| 16 |
|
#define goodpic(h) (((h)->dataType==IM_RGB || (h)->dataType==IM_CRGB) \ |
| 17 |
|
&& (h)->dataBits==16) |
| 18 |
|
|
| 22 |
– |
FILE *popen(); |
| 19 |
|
|
| 20 |
|
char *pcom = NULL; /* uncompress command */ |
| 21 |
|
|