home *** CD-ROM | disk | FTP | other *** search
- struct IntuiText itext6 = {
- 3,0,JAM2, /* front and back text pens, drawmode and fill byte */
- 76,179, /* XY origin relateive to conatiner TOPLEFT */
- NULL, /* font pointer or NULL for default */
- "Press <HELP> for help or <ESC> to quit", /* pointer to text */
- NULL /* next InutiText structure */
- };
-
- struct IntuiText itext5 = {
- 3,0,JAM2, /* front and back text pens, drawmode and fill byte */
- 76, 67, /* XY origin relateive to conatiner TOPLEFT */
- NULL, /* font pointer or NULL for default */
- "First Name:", /* pointer to text */
- &itext6 /* next InutiText structure */
- };
-
- struct IntuiText itext4 = {
- 3,0,JAM2, /* front and back text pens, drawmode and fill byte */
- 84, 59, /* XY origin relateive to conatiner TOPLEFT */
- NULL, /* font pointer or NULL for default */
- "Last Name:", /* pointer to text */
- &itext5 /* next InutiText structure */
- };
-
- struct IntuiText itext3 = {
- 3,0,JAM2, /* front and back text pens, drawmode and fill byte */
- 52, 43, /* XY origin relateive to conatiner TOPLEFT */
- NULL, /* font pointer or NULL for default */
- "Name:", /* pointer to text */
- &itext4 /* next InutiText structure */
- };
-
- struct IntuiText itext2 = {
- 3,0,JAM2, /* front and back text pens, drawmode and fill byte */
- 260, 19, /* XY origin relateive to conatiner TOPLEFT */
- NULL, /* font pointer or NULL for default */
- "-------------", /* pointer to text */
- &itext3 /* next InutiText structure */
- };
-
- struct IntuiText itext1 = {
- 3,0,JAM2, /* front and back text pens, drawmode and fill byte */
- 260, 11, /* XY origin relateive to conatiner TOPLEFT */
- NULL, /* font pointer or NULL for default */
- "Sample Window", /* pointer to text */
- &itext2 /* next InutiText structure */
- };
-
- #define IntuiTextList1 itext1
-