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

  1. /*  samc0206.c    */
  2.  
  3. #include "teglsys.h"
  4.  
  5. void main()
  6. {
  7.     imagestkptr fs;
  8.     unsigned x=100,y=100,w=200,h=50;
  9.  
  10.     easytegl();
  11.  
  12.     quickframe(&fs,&x,&y,&w,&h);
  13.     frametext(fs,2,2,"Hello World!");
  14.  
  15.     teglsupervisor();
  16. }
  17.