1
0
Files
2022-09-29 17:59:04 +03:00

17 lines
274 B
C

/* prom color bitmap format */
struct pcbm_node {
int color; /* color index */
int dx,dy; /* offset from 0,0 */
int w,h; /* size */
unsigned short *bits; /* bits in pbm format */
};
struct pcbm {
int w;
int h;
int dx;
int dy;
struct pcbm_node *bitlist;
};