C语言中怎样做鼠标编程?
发布网友
发布时间:2022-05-26 14:06
我来回答
共2个回答
热心网友
时间:2023-10-21 02:41
dos模式下需要先加载鼠标驱动程序,然后用调用int33H中断(好像是的,希望我没记错)。很复杂的。
热心网友
时间:2023-10-21 02:41
#include
void
hidecursor()
{
console_cursor_info
cursor_info
=
{1,
0};
setconsolecursorinfo(getstdhandle(std_output_handle),
&cursor_info);
}
函数和结构体都在windows.h中定义,函数用法简单就不说了。
console_cursor_info结构体定义如下:
typedef
struct
{
dword
dwsize;
bool
bvisible;
//为0时光标不可见
}console_cursor_info,
*pconsole_cursor_info;
vc,mingw中均没问题。
不明白直接hi。