China DOS Union

-- Unite DOS · Advance DOS · Grow DOS --

Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!

中国DOS联盟论坛
The time now is 2026-06-27 08:46
中国DOS联盟论坛 » DOS疑难解答 & 问题讨论 (解答室) » Looking for a program to make TC support the mouse View 617 Replies 3
Original Poster Posted 2004-02-11 00:00 ·  中国 江苏 苏州 昆山市 电信
中级用户
★★
Credits 440
Posts 103
Joined 2004-01-12 00:00
22-year member
UID 15384
Gender Female
Status Offline
Although I know this software exists,
its name is probably something like mouse for turbo c or whatever,
but I just can't find anywhere that still has it for download.

Experts, please help!
Floor 2 Posted 2004-02-12 00:00 ·  美国
系统支持
★★★★★★
“新DOS时代”站长
Credits 27,736
Posts 10,521
Joined 2002-10-09 12:00
23-year member
UID 9
Status Offline
Use Turbo C/C++ 3.0 for DOS. It already supports the mouse.
Wengier - 新DOS时代

欢迎大家来到我的“新DOS时代”网站,里面有各类DOS软件和资料,地址:
http://wendos.mycool.net/

E-Mail & MSN: wengierwu AT hotmail.com (最近比较忙,有事请联系DOSroot和雨露,谢谢!)

Floor 3 Posted 2004-02-12 00:00 ·  中国 四川 眉山 电信
中级用户
★★
Credits 355
Posts 99
Joined 2003-01-06 00:00
23-year member
UID 690
Gender Male
Status Offline
void mouse_init()
{
r.x.ax=0;
int86x(0x33,&r,&r,&s);
}

void mouse_read() /*get mouse status*/
{
union REGS r1,r2;
struct SREGS s;
r1.x.ax=3;
int86x(0x33,&r1,&r2,&s);
mousex=r2.x.cx;
mousey=r2.x.dx;
mousekey=r2.x.bx;
}
Floor 4 Posted 2004-02-12 00:00 ·  中国 江苏 苏州 昆山市 电信
中级用户
★★
Credits 440
Posts 103
Joined 2004-01-12 00:00
22-year member
UID 15384
Gender Female
Status Offline
Admin:
Right now I'm learning Turbo C2.0, and that's what the exam tests too!
But after using a mouse for such a long time, whenever I operate TC I always make mistakes.
So I really want this program, and there is this program on the Internet too, it's just that all the links are dead now.
Sigh~~~ I really want it.

9zhmke
I don't really know programming. What does the stuff you wrote mean? Could you explain it~!


Everyone
if anyone has that program, could you post it?
Forum Jump: