X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f X-Authentication-Warning: new-smtp2.ihug.com.au: Host p131-tnt3.syd.ihug.com.au [203.173.132.131] claimed to be acceleron Message-ID: <010001c19c17$777287e0$0102a8c0@acceleron> From: "Andrew Cottrell" To: , References: <10112311737 DOT AA21576 AT clio DOT rice DOT edu> <001301c1929e$5f4e9c80$0102a8c0 AT acceleron> <3C3314DF DOT FC34DB AT inti DOT gov DOT ar> <006401c1944d$56429000$0102a8c0 AT acceleron> <3C34B292 DOT DF657F2B AT inti DOT gov DOT ar> Subject: Re: NTVDM Error and TVision. Date: Sun, 13 Jan 2002 20:31:46 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Reply-To: djgpp-workers AT delorie DOT com Sorry for taking such a long time in responding, but I have been busy. > > By the way even with useBIOS_VGA_State = 0 I still get a NTVDM error in > > Rhide, one issue found now to move onto the next one. More debugging to be > > done. > > Did you check the mouse stuff is working for 2k/XP as I coded for NT 4.0? I > mean: does the library detect NT and uses poll strategy instead of Real Mode > Call Back? The mouse stuff works XP. The code fragment in THWMouse::THWMouse() as outlined below detected NT on XP. char *OS=getenv("OS"); // SET: NT reacts crashing when we use the mouse handler, don't know why // and personally don't care, so just disable the handler. if (OS && strcmp(OS,"Windows_NT")==0) use_mouse_handler=0; Andrew