home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / tegltc.zip / SAMPROGS / SAMC0422.C < prev    next >
Text File  |  1990-06-29  |  368b  |  27 lines

  1. /* samc04022.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.  
  16.     getfsimage(1,1,fs);
  17.  
  18.     pushimage(51,51,150,150);
  19.     putfsimage(51,51,fs,FGNORM);
  20.     dropimagebuffer(fs);
  21.  
  22.     showmouse();
  23.     while (mouse_buttons == 0);
  24.  
  25.  
  26.   }
  27.