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

  1.   // Example: 168 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. short    cpu;
  5. short  main(void)
  6. {
  7.   cpu = dddWhatCPU();
  8.   if (cpu>=3)
  9.   {
  10.     printf("This PC has an 80%d86 CPU and therefore is good enough for 3D-Ware.\n",cpu);
  11.   }
  12.   else
  13.   {
  14.     puts("This PC is not powerful enough for the 3D-Ware code.");
  15.   }
  16.   return 0;
  17. }
  18.