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

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