home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Homebrewer's Handbook / vr.iso / avril / av.c < prev    next >
C/C++ Source or Header  |  1996-03-19  |  310b  |  17 lines

  1. /* Simple demo of AVRIL */
  2.  
  3. /* Written by Bernie Rodhl, April 1994 */
  4.  
  5. #include "avril.h"
  6. #include <stdlib.h>  /* for getenv() */
  7.  
  8. #include "avrildrv.h"
  9.  
  10. void main(int argc, char *argv[])
  11.     {
  12.     vrl_SystemStartup();
  13.     vrl_ReadCFGfile(NULL);
  14.     vrl_SystemCommandLine(argc, argv);
  15.     vrl_SystemRun();
  16.     }
  17.