home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff214.lzh / SmartIcon / src / iconimage.c < prev    next >
C/C++ Source or Header  |  1989-05-30  |  2KB  |  49 lines

  1. /***************************************************************************/
  2. /*                                       */
  3. /* SmartIcon, release 1.0 - An Intuition object iconifier for the Amiga    */
  4. /* Copyright (c) 1988 Gauthier H. Groult                                   */
  5. /*                                       */
  6. /* Written in January 1988 by Gauthier H. Groult               */
  7. /*                  33, Boulevard Saint Denis,           */
  8. /*                  92400 Courbevoie                   */
  9. /*                  France - Europe                   */
  10. /*                  Tel: (16) 1 47 89 09 54                      */
  11. /*                  email: mcvax!inria!litp!germinal!groult       */
  12. /*                                       */
  13. /* This source code is not in public domain, please do not distribute.       */
  14. /* The binary program is shareaware. Read docs files for details.       */
  15. /*                                       */
  16. /***************************************************************************/
  17.  
  18.  
  19. #include <exec/types.h>
  20.  
  21. /* These are the nibbles for the icon produced in the ram-disk for the    */
  22. /* iconized windows.                            */
  23. /*                                    */
  24. /* read gadgets.c for more on how we get them.                */
  25.  
  26. USHORT theWindowIData[] =
  27.    {
  28.    0x0000,0x0000,0x0000,0x0000,0x1FFF,0xFFFF,0xFEEE,0xE800,
  29.    0x1555,0x5555,0x54EE,0xE800,0x1FFF,0xFFFF,0xFFFF,0xF800,
  30.    0x1555,0x5555,0x5555,0x5800,0x1AAA,0xAAAA,0xAAAA,0xA800,
  31.    0x1555,0x5555,0x5555,0x5800,0x1AAA,0xAAAA,0xAAAA,0xA800,
  32.    0x1555,0x5555,0x5555,0x5800,0x1AAA,0xAAAA,0xAAAA,0xA800,
  33.    0x1555,0x5555,0x5555,0x5800,0x000A,0xAAAA,0xAAAA,0xA800,
  34.    0x7385,0x5555,0x5555,0x5800,0x7F8A,0xAAAA,0xAAAA,0xA800,
  35.    0x7F85,0x5555,0x5555,0xF800,0x7F8A,0xAAAA,0xAAAA,0x8800,
  36.    0x7F8F,0xFFFF,0xFFFF,0xF800,0x7F80,0x0000,0x0000,0x0000,
  37.    0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
  38.    0x7FFF,0xFFFF,0xFFFF,0xFE00,0x6000,0x0000,0x0000,0x0600,
  39.    0x6FFF,0xFFFF,0xFE00,0x0600,0x6000,0x0000,0x0000,0x0600,
  40.    0x6FFF,0xFFFF,0xFFFF,0xF600,0x6FFF,0xFFFF,0xFFFF,0xF600,
  41.    0x6FFF,0xFFFF,0xFFFF,0xF600,0x6FFF,0xFFFF,0xFFFF,0xF600,
  42.    0x6FFF,0xFFFF,0xFFFF,0xF600,0x6FFF,0xFFFF,0xFFFF,0xF600,
  43.    0x6FFF,0xFFFF,0xFFFF,0xF600,0x7FCF,0xFFFF,0xFFFF,0xF600,
  44.    0x9E4F,0xFFFF,0xFFFF,0xF600,0x9E4F,0xFFFF,0xFFFF,0xF600,
  45.    0x804F,0xFFFF,0xFFFF,0x0600,0x804F,0xFFFF,0xFFFF,0x0600,
  46.    0x8040,0x0000,0x0000,0x0600,0x804F,0xFFFF,0xFFFF,0xFE00,
  47.    0xFFC0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
  48.    };
  49.