version 1.2 | | version 1.3 |
---|
| | |
/* | | /* |
* static char *rcsid_newserver_h = | | * static char *rcsid_newserver_h = |
* "$Id: newserver.h,v 1.2 1999/07/13 06:02:52 cvs Exp $"; | | * "$Id: newserver.h,v 1.3 2000/05/13 23:44:43 cvs Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
enum Old_Mode old_mode; | | enum Old_Mode old_mode; |
} NewSocket; | | } NewSocket; |
| | |
| | |
| | |
| | #define FACE_TYPES 3 |
| | |
typedef struct FaceInfo { | | typedef struct FaceInfo { |
char *name; /* name of the image, including component path names (ie, | | char *name; /* name of the image, including component path names (ie, |
* ./arch/system/bug.111) | | * ./arch/system/bug.111) |
*/ | | */ |
char *data; /* xpm data */ | | char *data[FACE_TYPES]; /* xpm data */ |
uint16 datalen; /* length of the xpm data */ | | uint16 datalen[FACE_TYPES]; /* length of the xpm data */ |
char bitmapdata[3*24]; /* 24x24 bitmaps always are the same size */ | | |
} FaceInfo; | | } FaceInfo; |
| | |
| | |