File: rc.h

package info (click to toggle)
xpaint 2.5.1-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,448 kB
  • ctags: 2,478
  • sloc: ansic: 25,980; makefile: 36; sh: 23
file content (17 lines) | stat: -rw-r--r-- 337 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* $Id: rc.h,v 1.2 1996/04/19 09:19:06 torsten 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 *);