Changeset acac2ef in mainline for uspace/drv/char/ps2mouse/ps2mouse.h
- Timestamp:
- 2011-12-27T11:53:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- edb3cf2
- Parents:
- da2d75b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ps2mouse/ps2mouse.h
rda2d75b racac2ef 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 /** @addtogroup drv kbd28 /** @addtogroup drvmouse 29 29 * @{ 30 30 */ 31 31 /** @file 32 * @brief XT keyboard driver;32 * @brief ps/2 mouse driver. 33 33 */ 34 34 35 #ifndef _ XT_KBD_H_36 #define _ XT_KBD_H_35 #ifndef _PS2MOUSE_H_ 36 #define _PS2MOUSE_H_ 37 37 38 38 #include <ddf/driver.h> 39 39 #include <fibril.h> 40 40 41 /** PS/2 mouse driver structure. */ 41 42 typedef struct { 42 ddf_fun_t *mouse_fun; 43 async_sess_t *parent_sess; 44 async_sess_t *input_sess; 45 fid_t polling_fibril; 43 ddf_fun_t *mouse_fun; /**< Mouse function. */ 44 async_sess_t *parent_sess; /**< Connection to device providing data. */ 45 async_sess_t *input_sess; /**< Callback connection to consumer. */ 46 fid_t polling_fibril; /**< Fibril retrieving an parsing data. */ 46 47 } ps2_mouse_t; 47 48
Note:
See TracChangeset
for help on using the changeset viewer.