Changeset 81da2e7f in mainline for uspace/drv/usbhid/kbdrepeat.h
- Timestamp:
- 2011-03-24T20:13:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 61825f9
- Parents:
- 82d04a48
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/kbdrepeat.h
r82d04a48 r81da2e7f 39 39 struct usbhid_kbd_t; 40 40 41 //#include "kbddev.h" 41 /*----------------------------------------------------------------------------*/ 42 /** 43 * Structure for keeping information needed for auto-repeat of keys. 44 */ 45 typedef struct { 46 /** Last pressed key. */ 47 unsigned int key_new; 48 /** Key to be repeated. */ 49 unsigned int key_repeated; 50 /** Delay before first repeat in microseconds. */ 51 unsigned int delay_before; 52 /** Delay between repeats in microseconds. */ 53 unsigned int delay_between; 54 } usbhid_kbd_repeat_t; 42 55 43 56 /*----------------------------------------------------------------------------*/
Note:
See TracChangeset
for help on using the changeset viewer.