home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Madness / VRMAD96_ONE.ISO / virtek / libex / libex074.c < prev    next >
C/C++ Source or Header  |  1995-08-24  |  324b  |  18 lines

  1.   // Example: 074 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. short    vga;
  5. short  main(void)
  6. {
  7.   vga = dddIsVGA();
  8.   if (vga==1)
  9.   {
  10.     puts("This PC has a VGA video card fitted.");
  11.   }
  12.   else
  13.   {
  14.     puts("This PC is not suitable for the 3D-Ware code.");
  15.   }
  16.   return 0;
  17. }
  18.