📄 sysmouse.c
字号:
void cursor_on( void )
{
asm{
mov ax,01h // function call for mouse cursor on //
int 33h
}
}
void get_sysmouse(unsigned int *mptr)
{
unsigned int posx,posy;
unsigned int button;
asm{
mov ax, 03h
int 33h
mov button, bx
mov posx, cx
mov posy, dx
}
*mptr=button;
*(mptr+1)=posx;
*(mptr+2)=posy;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -