home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / tegltc.zip / SAMPROGS / SAMC0205.C < prev    next >
Text File  |  1990-05-14  |  418b  |  21 lines

  1. /*  samc0205.c    */
  2.  
  3. #include "teglsys.h"
  4.  
  5. unsigned easymessage(imagestkptr frame,msclickptr mouseclickpos)
  6. {
  7.     framefromicon(frame,mouseclickpos,150,150,400,190);
  8.     prepareforupdate(stackptr);
  9.     frametext(stackptr,1,2,"Icon to Frame Transformation");
  10.     commitupdate();
  11.  
  12.     return 1;
  13. }
  14.  
  15. void main()
  16. {
  17.     easytegl();
  18.     activebutton(100,100,"MESSAGE",easymessage);
  19.     teglsupervisor();
  20. }
  21.