typedef struct Face Face;
typedef struct Facefile Facefile;
struct Face
{
Image *bit; /* unless there's an error, this is file->image */
Image *mask; /* unless there's an error, this is file->mask */
char *str[Nstring];
int recent;
ulong time;
Tm tm;
int unknown;
Facefile *file;
};
/*
* Loading the files is slow enough on a dial-up line to be worth this trouble
*/
struct Facefile
{
Image *image;
Image *mask;
ulong mtime;
ulong rdtime;
int ref;
char *file;
Facefile *next;
};