home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 580a.lha / HDFView_v3.01 / source.LZH / source / src / request.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-10  |  368 b   |  17 lines

  1. #include <exec/types.h>
  2. #include <intuition/intuition.h>
  3. #include <proto/intuition.h>
  4.  
  5. struct IntuiText it[] = {
  6.    {2,3,JAM2,1,1,NULL,NULL,NULL},
  7.    {0,1,JAM2,1,1,NULL,"I understand",NULL}
  8. };   
  9.  
  10. extern struct Window *gWindow;
  11.  
  12. void request(char message[],char *moreinfo)
  13. {
  14.    it[0].IText = message;
  15.    
  16.    AutoRequest(gWindow,&it[0],NULL,&it[1],NULL,NULL,200,100);
  17. }