From: Adam Majer Newsgroups: comp.os.msdos.djgpp Subject: Re: __go32__dpmi ? Date: Sat, 17 Jun 2000 01:38:08 -0500 Organization: The University of Manitoba Lines: 31 Message-ID: References: NNTP-Posting-Host: castor.cc.umanitoba.ca Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: canopus.cc.umanitoba.ca 961223891 629 130.179.16.20 (17 Jun 2000 06:38:11 GMT) X-Complaints-To: Postmaster AT cc DOT umanitoba DOT ca NNTP-Posting-Date: 17 Jun 2000 06:38:11 GMT In-Reply-To: To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk You do not need it. That function returns the pointer to the current PM interrupt. These are in the LINT or something like that (the register for the interupt table in PM). Anyway, you cannot call this address from DJGPP since it does not support far pointers. To set up video mode, just use the real mode interrupt function - set up speed is kind of irrelevent to most functions. Later you can use _farpokeb to write to video memory. On Fri, 16 Jun 2000, smile773 wrote: > How could I impliment this procedure > > _go32_dpmi_get_protected_mode_interrupt_vector > > I found it here > http://www.telespace.ch/LIBC/libc_370.html > > My goal is to set the text and backgound color without invoking > the graphics mode in the crt unit. > > > > Sincerely, Adam