Structure for images

  typedef struct { /* Image */
 
  word width; /* Image width in pixels */
 
  word height; /* Image height in pixels */
  
  byte *pixmap; /* Image pixel bitmap */
 
  word size; /* Image size in bytes */
  
  char *name; /* Image name */
 
  }TIMAGE;
 
  typedef TIMAGE* PIMAGE ; /* Pointer to image */