first commit - moved from local dev to git
This commit is contained in:
25
devtools/ahcccf.bin/include/mint/mouse.h
Normal file
25
devtools/ahcccf.bin/include/mint/mouse.h
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
#ifndef _MINT_MOUSE_H
|
||||
#define _MINT_MOUSE_H 1
|
||||
|
||||
#ifndef _FEATURES_H
|
||||
# include <features.h>
|
||||
#endif
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
/* header file for mouse access */
|
||||
|
||||
struct mouse_buf {
|
||||
int m_buttons; /* button states */
|
||||
int m_dx; /* change in x since last read */
|
||||
int m_dy; /* change in y since last read */
|
||||
};
|
||||
|
||||
#define M_LEFT_BUTTON 0x02
|
||||
#define M_RIGHT_BUTTON 0x01
|
||||
#define M_MID_BUTTON 0x00 /* there is none! */
|
||||
|
||||
__END_DECLS
|
||||
|
||||
#endif /* _MINT_MOUSE_H */
|
||||
Reference in New Issue
Block a user