home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <dos.h>
-
- struct PAINTCOLOR {
- unsigned type,color;
- };
-
- extern unsigned char gds_fshift;
- extern unsigned gds_wrkoff;
- extern unsigned gds_wrkseg;
-
- int g_paintcolor(unsigned color)
- {
- union REGS reg;
- struct SREGS seg;
- struct {
- unsigned len;
- struct PAINTCOLOR ptclr;
- } gdata;
-
- segread(&seg);
- reg.h.ah=gds_fshift+0x0f;
- reg.x.di=(unsigned)&gdata;
- seg.ds=seg.ss;
- gdata.len=4;
- gdata.ptclr.type=0x52e2;
- gdata.ptclr.color=color;
- reg.x.bx=gds_wrkoff;
- seg.es=gds_wrkseg;
- int86x(0x92,®,®,&seg);
- return (int)reg.h.ah;
- }