home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 05oslib / bios / palette.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  340 b   |  21 lines

  1. /*
  2.  *    palette    -- set graphics color values or border color
  3.  */
  4.  
  5. #include <dos.h>
  6. #include <local\bioslib.h>
  7.  
  8. int
  9. palette(id, color)
  10. unsigned int id, color;
  11. {
  12.     union REGS inregs, outregs;
  13.  
  14.     inregs.h.ah = PALETTE;
  15.     inregs.h.bh = id;
  16.     inregs.h.bl = color;
  17.     int86(VIDEO_IO, &inregs, &outregs);
  18.  
  19.     return(outregs.x.cflag);
  20. }
  21.