[A89] Re: _rowread()


[Prev][Next][Index][Thread]

[A89] Re: _rowread()




You could try the thing Olle wrote, but I'm not sure how well it works (I've never used it). 
However, there is an example in the TIGCC documentation (faq):
INT_HANDLER save_int_1;
...
save_int_1 = GetIntVec (AUTO_INT_1);
SetIntVec (AUTO_INT_1, DUMMY_HANDLER);   // redirect auto-int 1 to "nothing"
// enable grayscale
// do your code
// disable grayscale
SetIntVec (AUTO_INT_1, save_int_1);

jeff

> 
> How do you disable Auto Int 1 and fill in with a dummy handler so I can still
> use gray scale?
> 
> 
> 


__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/



References: