home *** CD-ROM | disk | FTP | other *** search
- #include <exec/types.h>
- #include <intuition/intuition.h>
- #include <proto/intuition.h>
-
- struct IntuiText it[] = {
- {2,3,JAM2,1,1,NULL,NULL,NULL},
- {0,1,JAM2,1,1,NULL,"I understand",NULL}
- };
-
- extern struct Window *gWindow;
-
- void request(char message[],char *moreinfo)
- {
- it[0].IText = message;
-
- AutoRequest(gWindow,&it[0],NULL,&it[1],NULL,NULL,200,100);
- }