/usr/share/xpaint/include/rc.h is in xpaint 2.9.1.4-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* $Id: rc.h,v 1.17 2005/03/20 20:15:32 demailly Exp $ */
typedef struct {
int freed;
int ncolors;
char **colors;
Boolean *colorFlags;
Pixel *colorPixels;
int nimages;
Image **images;
int nbrushes;
Image **brushes;
} RCInfo;
RCInfo *ReadDefaultRC(void);
RCInfo *ReadRC(char *);
void FreeRC(RCInfo *);
|