home *** CD-ROM | disk | FTP | other *** search
- /* demo.h header details to be included with demo.c */
-
- #include <general.h>
-
- struct NewScreen NewScreen = {
-
- 0,0, /* top left */
-
- SCREENWIDTH,SCREENHEIGHT, /* width and height */
-
- SCREENPLANES, /* depth, number of bitplanes */
-
- 2,4, /* detail and block pens */
-
- SPRITES, /* ViewModes */
-
- CUSTOMSCREEN,
-
- NULL, /* Accept Default Font */
-
- NULL, /* No Title */
-
- NULL, /* No Gadgets */
-
- NULL, /* Let Intuition do bitmap */
-
- };
-
- struct NewWindow NewWindow = {
-
- 0,0, /* window XY origin relative to TopLeft of screen */
-
- SCREENWIDTH,SCREENHEIGHT, /* window width and height */
-
- -1,-1, /* detail and block pens same as screen */
-
- NULL, /* IDCMP flags */
-
- RMBTRAP+SMART_REFRESH+BORDERLESS+ACTIVATE, /* window flags */
-
- NULL, /* first gadget in gadget list */
-
- NULL, /* custom CHECKMARK imagery */
-
- NULL, /* window title */
-
- NULL, /* custom screen - resource handler sets this up */
-
- NULL, /* custom bitmap */
-
- 0,0, /* minimum width and height */
-
- 0,0, /* maximum width and height */
-
- CUSTOMSCREEN /* destination screen type */
-
- };
-
-
- #define OPEN_INTUITION_LIBRARY 1
-
- #define OPEN_GRAPHICS_LIBRARY 2
-
- #define OPEN_CUSTOM_SCREEN 3
-
- #define OPEN_WINDOW 4
-
- #define GET_SPRITE 5
-
- #define INSTALL_SPRITE 6
-
- #define CREATE_REPLY_PORT1 7
-
- #define CREATE_REQUEST_BLOCK1 8
-
- #define OPEN_GAMEPORT_DEVICE 9
-
- #define SET_CONTROLLER_TYPE 10
-
- #define SET_GAMEPORT_TRIGGER 11
-
-
- UBYTE g_resource_vector[12] = {11, /* count of labels to follow */
-
- OPEN_INTUITION_LIBRARY,
-
- OPEN_GRAPHICS_LIBRARY,
-
- OPEN_CUSTOM_SCREEN,
-
- OPEN_WINDOW,
-
- GET_SPRITE,
-
- INSTALL_SPRITE,
-
- CREATE_REPLY_PORT1,
-
- CREATE_REQUEST_BLOCK1,
-
- OPEN_GAMEPORT_DEVICE,
-
- SET_CONTROLLER_TYPE,
-
- SET_GAMEPORT_TRIGGER
-
- };
-
- /* ************************ COLOUR TABLE ********************************* */
-
- USHORT colourtable[] = {
-
- 0x0000, /* color #0 */
- 0x0FFF, /* color #1 */
- 0x0DDD, /* color #2 */
- 0x0BBB, /* color #3 */
- 0x0999, /* color #4 */
- 0x0777, /* color #5 */
- 0x0555, /* color #6 */
- 0x0333, /* color #7 */
- 0x0048, /* color #8 */
- 0x0027, /* color #9 */
- 0x0015, /* color #10 */
- 0x0004, /* color #11 */
- 0x0C7D, /* color #12 */
- 0x0B4C, /* color #13 */
- 0x0A3B, /* color #14 */
- 0x091A, /* color #15 */
- 0x0809, /* color #16 */
- 0x0708, /* ---- color #17 */
- 0x0607, /* ---- color #18 */
- 0x0506, /* ---- color #19 */
- 0x0405, /* color #20 */
- 0x0304, /* ---- color #21 */
- 0x0202, /* ---- color #22 */
- 0x000, /* ---- color #23 */
- 0x0FF0, /* color #24 */
- 0x0EA0, /* ---- color #25 */
- 0x0C60, /* ---- color #26 */
- 0x0931, /* ---- color #27 */
- 0x009F, /* color #28 */
- 0x0039, /* ---- color #29 */
- 0x0004, /* ---- color #30 */
- 0x0F00 /* ---- color #31 */
- };
-
- /* ***************** GAMEPORT TRIGGER PARAMETERS ************************* */
-
- struct GamePortTrigger gameport_trigger = {
-
- GPTF_UPKEYS+GPTF_DOWNKEYS, /* upward and downward button transitions */
- 1000, /* 50 x 20 is 20 second PAL timeout */
- 1,1, /* amount of x and y movements that will generate an event */
- };
-
- /* **************************** SPRITE DATA ****************************** */
- UWORD chip sprite_data[] =
-
- {
-
- 0,0,
-
- 0x0990,0x07E0,
- 0x13C8,0x0FF0,
- 0x23C4,0x1FF8,
- 0x13C8,0x0FF0,
- 0x0990,0x07E0,
- 0x0990,0x07E0,
- 0x13C8,0x0FF0,
- 0x23C4,0x1FF8,
- 0x13C8,0x0FF0,
- 0x0990,0x07E0,
- 0x0990,0x07E0,
- 0x13C8,0x0FF0,
- 0x23C4,0x1FF8,
- 0x13C8,0x0FF0,
- 0x0990,0x07E0,
-
- 0,0
-
- };
-
- /* *********************************************************************** */
-
-
- USHORT chip my_name_image_data[] = {
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x078F,0xD05F,
- 0x9E1F,0xC007,0x9F9F,0x8FCF,0xDFC0,0x1F1F,0xD047,0x001F,
- 0x9860,0x1F83,0x0CDE,0x0007,0x187F,0xDF83,0x0300,0x0000,
- 0x0CC3,0x18CC,0xCC0C,0xC00C,0xCCCC,0xC30B,0x4CC0,0x0D8C,
- 0xD8CD,0x800C,0xD860,0x0CC7,0x8CCC,0x000D,0x986C,0xCCC7,
- 0x8780,0x0000,0x0E03,0x1DCC,0xCC0C,0x000E,0x0CCC,0xC303,
- 0x0C00,0x0CCC,0x1DD8,0xC00C,0xCCC0,0x0CC7,0x8CCC,0x0018,
- 0xCCCC,0x0CC7,0x8780,0x0000,0x0703,0x1FCF,0x8C0F,0x0007,
- 0x0F8F,0x8303,0x0F00,0x0CCF,0x1FD8,0xC00F,0x8780,0x0F8C,
- 0xCCCC,0x0018,0xCCCF,0x0F8C,0xCCC0,0x0000,0x01C3,0x1ACC,
- 0x0C4C,0x0001,0xCC0D,0x8303,0x0C00,0x0CCC,0x1AD8,0xC00C,
- 0xC300,0x0C0F,0xCCCC,0x4018,0xC78C,0x0D8F,0xCFC0,0x0000,
- 0x0CC3,0x18CC,0x0CCC,0xC00C,0xCC0C,0xC303,0x0CC0,0x0D8C,
- 0xD8CD,0x800C,0xC300,0x0C18,0x6CCC,0xC00D,0x878C,0xCCD8,
- 0x7860,0x0000,0x078F,0xD8DE,0x1FDF,0xC007,0x9E1C,0x6FC7,
- 0x9FC0,0x1F1F,0xD8C7,0x001F,0x8780,0x1E18,0x67DF,0xC007,
- 0x031F,0xDC78,0x7860,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0199,
- 0xF9F8,0x03C3,0xFBF9,0xF803,0xF9FB,0xF3F8,0x03F1,0x99F9,
- 0xF8E3,0x1801,0xF8E0,0x00E1,0x99F9,0xF800,0x0000,0x0000,
- 0x0000,0x0198,0x6168,0x0181,0x9999,0x6801,0x9861,0x9998,
- 0x0199,0x9969,0x69B3,0x9801,0x69B0,0x01B1,0x9861,0x6800,
- 0x0000,0x0000,0x0000,0x0198,0x6060,0x0181,0x8180,0x6001,
- 0x8061,0x9980,0x0199,0x9860,0x631B,0xD800,0x6318,0x0319,
- 0x9860,0x6000,0x0000,0x0000,0x0000,0x01F8,0x6060,0x0181,
- 0xE1E0,0x6001,0xE061,0xF1E0,0x01F1,0x9860,0x631B,0x7800,
- 0x6318,0x0319,0x9860,0x6000,0x0000,0x0000,0x0000,0x0198,
- 0x6060,0x0189,0x8180,0x6001,0x8061,0xB180,0x0199,0x9860,
- 0x631B,0x3800,0x6318,0x0319,0x9860,0x6000,0x0000,0x0000,
- 0x0000,0x0198,0x6060,0x0199,0x9980,0x6001,0x8061,0x9998,
- 0x0199,0x9860,0x61B3,0x1800,0x61B0,0x01B1,0x9860,0x6000,
- 0x0000,0x0000,0x0000,0x0199,0xF8F0,0x03FB,0xFBC0,0xF003,
- 0xC1FB,0x8FF8,0x03F0,0xF8F0,0xF0E3,0x1800,0xF0E0,0x00F0,
- 0xF9F8,0xF000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0018,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0040,0x2820,0x4100,0x2000,
- 0x4040,0x4020,0x2020,0x0080,0x2820,0x8000,0x4410,0x0040,
- 0x8221,0x0000,0x8400,0x2040,0x8080,0x0000,0x0220,0x8422,
- 0x2202,0x2002,0x2222,0x2084,0xA220,0x0242,0x2422,0x4002,
- 0x2410,0x0220,0x4222,0x0002,0x4412,0x2220,0x4040,0x0000,
- 0x0100,0x8222,0x2202,0x0001,0x0222,0x2080,0x8200,0x0222,
- 0x0224,0x2002,0x2220,0x0220,0x4222,0x0004,0x2222,0x0220,
- 0x4040,0x0000,0x0080,0x8020,0x4200,0x8000,0x8040,0x4080,
- 0x8080,0x0220,0x8024,0x2000,0x4040,0x0042,0x2222,0x0004,
- 0x2220,0x8042,0x2220,0x0000,0x0020,0x8522,0x0222,0x0000,
- 0x2202,0x4080,0x8200,0x0222,0x0524,0x2002,0x2080,0x0200,
- 0x2222,0x2004,0x2042,0x0240,0x2020,0x0000,0x0220,0x8422,
- 0x0222,0x2002,0x2202,0x2080,0x8220,0x0242,0x2422,0x4002,
- 0x2080,0x0204,0x1222,0x2002,0x4042,0x2224,0x0410,0x0000,
- 0x0040,0x2421,0x0020,0x2000,0x4102,0x1020,0x4020,0x0080,
- 0x2420,0x8000,0x4040,0x0104,0x1020,0x2000,0x8080,0x2204,
- 0x0410,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0044,0x0404,0x0020,
- 0x0404,0x0400,0x0404,0x0804,0x0008,0x4404,0x0410,0x8400,
- 0x0410,0x0010,0x4404,0x0400,0x0000,0x0000,0x0000,0x0044,
- 0x1094,0x0040,0x4444,0x9400,0x4410,0x4444,0x0044,0x4494,
- 0x9448,0x4400,0x9448,0x0048,0x4410,0x9400,0x0000,0x0000,
- 0x0000,0x0044,0x1010,0x0040,0x4040,0x1000,0x4010,0x4440,
- 0x0044,0x4410,0x1084,0x2400,0x1084,0x0084,0x4410,0x1000,
- 0x0000,0x0000,0x0000,0x0004,0x1010,0x0040,0x1010,0x1000,
- 0x1010,0x0810,0x0008,0x4410,0x1084,0x8400,0x1084,0x0084,
- 0x4410,0x1000,0x0000,0x0000,0x0000,0x0044,0x1010,0x0044,
- 0x4040,0x1000,0x4010,0x4840,0x0044,0x4410,0x1084,0x8400,
- 0x1084,0x0084,0x4410,0x1000,0x0000,0x0000,0x0000,0x0044,
- 0x1010,0x0044,0x4440,0x1000,0x4010,0x4444,0x0044,0x4410,
- 0x1048,0x8400,0x1048,0x0048,0x4410,0x1000,0x0000,0x0000,
- 0x0000,0x0044,0x0408,0x0004,0x0420,0x0800,0x2004,0x4004,
- 0x0008,0x0408,0x0810,0x8400,0x0810,0x0008,0x0404,0x0800,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0004,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0040,0x2820,0x4100,0x2000,0x4040,0x4020,
- 0x2020,0x0080,0x2820,0x8000,0x4410,0x0040,0x8221,0x0000,
- 0x8400,0x2040,0x8080,0x0000,0x0220,0x8422,0x2202,0x2002,
- 0x2222,0x2084,0xA220,0x0242,0x2422,0x4002,0x2410,0x0220,
- 0x4222,0x0002,0x4412,0x2220,0x4040,0x0000,0x0100,0x8222,
- 0x2202,0x0001,0x0222,0x2080,0x8200,0x0222,0x0224,0x2002,
- 0x2220,0x0220,0x4222,0x0004,0x2222,0x0220,0x4040,0x0000,
- 0x0080,0x8020,0x4200,0x8000,0x8040,0x4080,0x8080,0x0220,
- 0x8024,0x2000,0x4040,0x0042,0x2222,0x0004,0x2220,0x8042,
- 0x2220,0x0000,0x0020,0x8522,0x0222,0x0000,0x2202,0x4080,
- 0x8200,0x0222,0x0524,0x2002,0x2080,0x0200,0x2222,0x2004,
- 0x2042,0x0240,0x2020,0x0000,0x0220,0x8422,0x0222,0x2002,
- 0x2202,0x2080,0x8220,0x0242,0x2422,0x4002,0x2080,0x0204,
- 0x1222,0x2002,0x4042,0x2224,0x0410,0x0000,0x0040,0x2421,
- 0x0020,0x2000,0x4102,0x1020,0x4020,0x0080,0x2420,0x8000,
- 0x4040,0x0104,0x1020,0x2000,0x8080,0x2204,0x0410,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0044,0x0404,0x0020,0x0404,0x0400,
- 0x0404,0x0804,0x0008,0x4404,0x0410,0x8400,0x0410,0x0010,
- 0x4404,0x0400,0x0000,0x0000,0x0000,0x0044,0x1094,0x0040,
- 0x4444,0x9400,0x4410,0x4444,0x0044,0x4494,0x9448,0x4400,
- 0x9448,0x0048,0x4410,0x9400,0x0000,0x0000,0x0000,0x0044,
- 0x1010,0x0040,0x4040,0x1000,0x4010,0x4440,0x0044,0x4410,
- 0x1084,0x2400,0x1084,0x0084,0x4410,0x1000,0x0000,0x0000,
- 0x0000,0x0004,0x1010,0x0040,0x1010,0x1000,0x1010,0x0810,
- 0x0008,0x4410,0x1084,0x8400,0x1084,0x0084,0x4410,0x1000,
- 0x0000,0x0000,0x0000,0x0044,0x1010,0x0044,0x4040,0x1000,
- 0x4010,0x4840,0x0044,0x4410,0x1084,0x8400,0x1084,0x0084,
- 0x4410,0x1000,0x0000,0x0000,0x0000,0x0044,0x1010,0x0044,
- 0x4440,0x1000,0x4010,0x4444,0x0044,0x4410,0x1048,0x8400,
- 0x1048,0x0048,0x4410,0x1000,0x0000,0x0000,0x0000,0x0044,
- 0x0408,0x0004,0x0420,0x0800,0x2004,0x4004,0x0008,0x0408,
- 0x0810,0x8400,0x0810,0x0008,0x0404,0x0800,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0004,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0040,0x2820,0x4100,0x2000,0x4040,0x4020,0x2020,0x0080,
- 0x2820,0x8000,0x4410,0x0040,0x8221,0x0000,0x8400,0x2040,
- 0x8080,0x0000,0x0220,0x8422,0x2202,0x2002,0x2222,0x2084,
- 0xA220,0x0242,0x2422,0x4002,0x2410,0x0220,0x4222,0x0002,
- 0x4412,0x2220,0x4040,0x0000,0x0100,0x8222,0x2202,0x0001,
- 0x0222,0x2080,0x8200,0x0222,0x0224,0x2002,0x2220,0x0220,
- 0x4222,0x0004,0x2222,0x0220,0x4040,0x0000,0x0080,0x8020,
- 0x4200,0x8000,0x8040,0x4080,0x8080,0x0220,0x8024,0x2000,
- 0x4040,0x0042,0x2222,0x0004,0x2220,0x8042,0x2220,0x0000,
- 0x0020,0x8522,0x0222,0x0000,0x2202,0x4080,0x8200,0x0222,
- 0x0524,0x2002,0x2080,0x0200,0x2222,0x2004,0x2042,0x0240,
- 0x2020,0x0000,0x0220,0x8422,0x0222,0x2002,0x2202,0x2080,
- 0x8220,0x0242,0x2422,0x4002,0x2080,0x0204,0x1222,0x2002,
- 0x4042,0x2224,0x0410,0x0000,0x0040,0x2421,0x0020,0x2000,
- 0x4102,0x1020,0x4020,0x0080,0x2420,0x8000,0x4040,0x0104,
- 0x1020,0x2000,0x8080,0x2204,0x0410,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0044,0x0404,0x0020,0x0404,0x0400,0x0404,0x0804,
- 0x0008,0x4404,0x0410,0x8400,0x0410,0x0010,0x4404,0x0400,
- 0x0000,0x0000,0x0000,0x0044,0x1094,0x0040,0x4444,0x9400,
- 0x4410,0x4444,0x0044,0x4494,0x9448,0x4400,0x9448,0x0048,
- 0x4410,0x9400,0x0000,0x0000,0x0000,0x0044,0x1010,0x0040,
- 0x4040,0x1000,0x4010,0x4440,0x0044,0x4410,0x1084,0x2400,
- 0x1084,0x0084,0x4410,0x1000,0x0000,0x0000,0x0000,0x0004,
- 0x1010,0x0040,0x1010,0x1000,0x1010,0x0810,0x0008,0x4410,
- 0x1084,0x8400,0x1084,0x0084,0x4410,0x1000,0x0000,0x0000,
- 0x0000,0x0044,0x1010,0x0044,0x4040,0x1000,0x4010,0x4840,
- 0x0044,0x4410,0x1084,0x8400,0x1084,0x0084,0x4410,0x1000,
- 0x0000,0x0000,0x0000,0x0044,0x1010,0x0044,0x4440,0x1000,
- 0x4010,0x4444,0x0044,0x4410,0x1048,0x8400,0x1048,0x0048,
- 0x4410,0x1000,0x0000,0x0000,0x0000,0x0044,0x0408,0x0004,
- 0x0420,0x0800,0x2004,0x4004,0x0008,0x0408,0x0810,0x8400,
- 0x0810,0x0008,0x0404,0x0800,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0004,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
- 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
- };
-
- struct Image my_name_image = {
- 0,0, /* XY origin relative to container TopLeft */
- 273,27, /* Image width and height in pixels */
- 4, /* number of bitplanes in Image */
- my_name_image_data, /* pointer to ImageData */
- 0x000F,0x0000, /* PlanePick and PlaneOnOff */
- NULL /* next Image structure */
- };
-
-