home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1787 / imgfile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  164 b   |  14 lines

  1. /*
  2.  * imgfile.h
  3.  */
  4.  
  5. struct imgfile {
  6.     char*    filename;
  7.     char*    name;
  8.     FILE*    stream;
  9.     int        width;
  10.     int        height;
  11.     struct mem_image* imglist;
  12.     struct imgfile*    next;
  13. };
  14.