[LinksOS CVS Commit]kernel/hw/x86/native mouse.h,1.1,1.2
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-14 23:29:17
|
Update of /cvsroot/linksos/kernel/hw/x86/native In directory router-internal.tossell.net:/tmp/cvs-serv31175 Modified Files: mouse.h Log Message: Title: Function Names and returns Changes: Removed 'mouse' from member names - we don't need to repeat what it is... Changed info function's return type to an info struct. Effects: Clearer usage a=kennyt Index: mouse.h =================================================================== RCS file: /cvsroot/linksos/kernel/hw/x86/native/mouse.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mouse.h 14 Jan 2003 23:04:38 -0000 1.1 --- mouse.h 14 Jan 2003 23:29:11 -0000 1.2 *************** *** 2,29 **** #define _MOUSE_H ! class MOUSE ! { public: ! MOUSE(); //Constructor ! ! MOUSE(); //Destructor ! ! //Accessors ! void reset_mouse_cursor(void); ! void show_mouse_cursor(void); ! void hide_mouse_cursor(void); ! void constrain_mouse_cursor(void); ! void get_mouse_info(int & mouse_x, int & mouse_y, int & mouse_button); } ! #endif ! --- 2,25 ---- #define _MOUSE_H ! class MOUSE { public: ! MOUSE(); // Constructor ! MOUSE(); // Destructor ! // Accessors ! void reset_cursor(void); ! void show_cursor(void); ! void hide_cursor(void); + void constrain_cursor(void); + devices::mouse::info info(void); } ! #endif /* ! _MOUSE_H */ |