?? tl_mouse.h
字號(hào):
/*
** thinlib (c) 2001 Matthew Conte (matt@conte.com)
**
**
** tl_mouse.h
**
** DOS mouse handling defines / prototypes
**
** $Id: $
*/
#ifndef _TL_MOUSE_H_
#define _TL_MOUSE_H_
#include "tl_types.h"
/* mouse buttons */
enum
{
THIN_MOUSE_LEFT = 0,
THIN_MOUSE_MIDDLE,
THIN_MOUSE_RIGHT,
THIN_MOUSE_MAX_BUTTONS,
};
#define THIN_MOUSE_BUTTON_MASK(x) (1 << (x))
extern int thin_mouse_init(int width, int height, int delta_shift);
extern void thin_mouse_shutdown();
extern void thin_mouse_setrange(int width, int height);
extern uint8 thin_mouse_getmotion(int *dx, int *dy);
extern uint8 thin_mouse_getpos(int *x, int *y);
#endif /* !_TL_MOUSE_H_ */
/*
** $Log: $
*/
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -