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

  1. /*  samshell.c  */
  2. /*  the minimum requirements for a program */
  3. /*  using TEGL Windows Toolkit II */
  4.  
  5. #include <graphics.h>
  6. #include "teglsys.h"
  7.  
  8. void main()
  9.   {
  10.     easytegl();
  11.  
  12.     /* insert your code here */
  13.  
  14.  
  15.  
  16.     /* then turn control over to the supervisor */
  17.  
  18.     teglsupervisor();
  19.   }
  20.