Message-ID: <8D53104ECD0CD211AF4000A0C9D60AE37421EA@probe-2.acclaim-euro.net> From: Shawn Hargreaves To: djgpp AT delorie DOT com Subject: Re: problems about mouse in svga Date: Mon, 15 Mar 1999 14:33:31 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1460.8) Content-Type: text/plain Reply-To: djgpp AT delorie DOT com thriller writes: > I know that I have to write own code for displaying a mouse in SVGA > mode.It's a bit boring and difficult to me.I've heard there r some kinds > of new mouse drivers support SVGA,so where to get it and how to use it > to show my mouse curser? If your driver supports it, you can display a cursor using the standard int 0x33 functions: see Ralph Brown's interrupt list eg. http://www.delorie.com/djgpp/doc/rbinter/ix/33/00.html. Maybe you will be lucky and this will work ok on your machine, but I rather doubt it (in my experience only about 5% of mose drivers know about SVGA modes). If you want other people to be able to run your program, stay away from this. It's possible that you might be able to find a different mouse driver that works better than the one you are currently using, but that also isn't a good solution for general use because different mouse hardware requires different driver software, and not everyone will want to reconfigure their machine just to run your program. So even if you are able to get this working for you, it won't be a general solution for the problem on other machines as well. Am I allowed to plug Allegro again here? If you don't want to do this work yourself, I've already done it all for you... Shawn Hargreaves.