home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / maj / 4383 / info.c < prev    next >
Text File  |  1994-01-01  |  1KB  |  42 lines

  1. /*
  2.     VGAKIT Version 6.0
  3.  
  4.     Copyright 1988,89,90,91,92,93,94 John Bridges
  5.     Free for use in commercial, shareware or freeware applications
  6.  
  7.     INFO.C
  8. */
  9.  
  10.  
  11. extern int vgamem,bksize;
  12. extern int cirrus,everex,acumos,paradise,tseng,trident,t8900;
  13. extern int ativga,aheada,aheadb,oaktech,video7;
  14. extern int chipstech,tseng4,genoa,ncr,compaq,vesa,dactype;
  15.  
  16. main()
  17. {
  18.     whichvga();
  19.     if(cirrus) printf("cirrus\n");
  20.     if(everex) printf("everex\n");
  21.     if(acumos) printf("acumos\n");
  22.     if(paradise) printf("paradise\n");
  23.     if(tseng) printf("tseng\n");
  24.     if(trident) printf("trident\n");
  25.     if(t8900) printf("t8900\n");
  26.     if(ativga) printf("ativga\n");
  27.     if(aheada) printf("aheada\n");
  28.     if(aheadb ) printf("aheadb\n");
  29.     if(oaktech) printf("oaktech\n");
  30.     if(video7) printf("video7\n");
  31.     if(chipstech) printf("chipstech\n");
  32.     if(tseng4) printf("tseng4\n");
  33.     if(genoa) printf("genoa\n");
  34.     if(ncr) printf("ncr\n");
  35.     if(compaq) printf("compaq\n");
  36.     if(vesa) printf("vesa\n");
  37.     printf("dactype=%d\n",dactype);
  38.     printf("vgamem=%dk\n",vgamem);
  39.     printf("bksize=%d\n\n",bksize );
  40. }
  41.  
  42.