home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_03_01 / 3n01006a < prev    next >
Text File  |  1991-11-26  |  1KB  |  29 lines

  1.  
  2. /*****************************************************/
  3. /* icon.h                                            */
  4. /* -- Interface to icon creation module.             */
  5. /*****************************************************/
  6.  
  7. /*****************************************************/
  8. /* Types.                                            */
  9. /*****************************************************/
  10. typedef struct
  11.     {
  12.     POINT   ptHot;  /* Hotspot. */
  13.     int     dx, dy; /* Width and height. */
  14.     WORD    cbLine; /* Width of monochrome bitmap in */
  15.                     /* bytes. */
  16.     BYTE    cpln;   /* Number of planes in color */
  17.                     /* bitmap. */
  18.     BYTE    cbit;   /* Bits per plane in color */
  19.                     /* bitmap. */
  20.     BYTE    rgb[1]; /* Bitmaps (mono then color). */
  21.     } ICN;
  22.  
  23. typedef ICN FAR *    LPICN;
  24.  
  25. /*****************************************************/
  26. /* Prototypes.                                       */
  27. /*****************************************************/
  28. HICON   HicnFromBmpBmp(HBITMAP, HBITMAP);
  29.