home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / PASCAL / VGA256P.ZIP / DVGATPU.PAS next >
Encoding:
Pascal/Delphi Source File  |  1989-02-03  |  773 b   |  30 lines

  1. {***************************************}
  2. {  VGA256 BGI driver   unit interface   }
  3. {       interfaces to vga extras        }
  4. {       and VGADriverProc               }
  5. {  By:  Markham Thomas                  }
  6. {       Feb 3, 1989                     }
  7. {***************************************}
  8.  
  9. unit DVGATPU;
  10. interface
  11.  
  12. type RGB = array[0..255,0..2] of byte;
  13.  
  14. procedure _VGADriverProc;
  15. function  DetectVGA256:integer;
  16. procedure setvgapalette(var DACarray :RGB);
  17. procedure flashmodeon;
  18. procedure flashmodeoff;
  19.  
  20. implementation
  21. procedure _VGADRIVERPROC; external;
  22. {$L VGA256.OBJ }
  23. function  DetectVGA256;  external;
  24. procedure setvgapalette; external;
  25. procedure flashmodeon;   external;
  26. procedure flashmodeoff;  external;
  27. {$L VGAEXTRA.OBJ }
  28.  
  29. end.
  30.