home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / tegltc.zip / SAMPROGS / SAMC0405.C < prev    next >
Text File  |  1990-05-13  |  391b  |  27 lines

  1. /* samc0405.c */
  2.  
  3. #include "teglsys.h"
  4.  
  5. void main()
  6.   {
  7.     imagestkptr fs;
  8.  
  9.     easytegl();
  10.  
  11.     pushimage(1,1,100,100);
  12.     shadowbox(1,1,100,100);
  13.     fs = stackptr;
  14.  
  15.     pushimage(50,50,150,150);
  16.     shadowbox(50,50,150,150);
  17.  
  18.     showmouse();
  19.  
  20.     while( mouse_buttons == 0 );
  21.     dropstackimage(fs);
  22.  
  23.     while( mouse_buttons == 0 );
  24.     abort_msg("");
  25.  
  26.   }
  27.