Changeset 252e30c in mainline for uspace/drv/usbkbd/kbdrepeat.h
- Timestamp:
- 2011-03-24T22:55:29Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d92638
- Parents:
- 476b71ff
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbkbd/kbdrepeat.h
r476b71ff r252e30c 34 34 */ 35 35 36 #ifndef USB HID_KBDREPEAT_H_37 #define USB HID_KBDREPEAT_H_36 #ifndef USB_KBDREPEAT_H_ 37 #define USB_KBDREPEAT_H_ 38 38 39 struct usb hid_kbd_t;39 struct usb_kbd_t; 40 40 41 41 /*----------------------------------------------------------------------------*/ … … 52 52 /** Delay between repeats in microseconds. */ 53 53 unsigned int delay_between; 54 } usb hid_kbd_repeat_t;54 } usb_kbd_repeat_t; 55 55 56 56 /*----------------------------------------------------------------------------*/ 57 57 58 int usb hid_kbd_repeat_fibril(void *arg);58 int usb_kbd_repeat_fibril(void *arg); 59 59 60 void usb hid_kbd_repeat_start(struct usbhid_kbd_t *kbd, unsigned int key);60 void usb_kbd_repeat_start(struct usb_kbd_t *kbd, unsigned int key); 61 61 62 void usb hid_kbd_repeat_stop(struct usbhid_kbd_t *kbd, unsigned int key);62 void usb_kbd_repeat_stop(struct usb_kbd_t *kbd, unsigned int key); 63 63 64 #endif /* USB HID_KBDREPEAT_H_ */64 #endif /* USB_KBDREPEAT_H_ */ 65 65 66 66 /**
Note:
See TracChangeset
for help on using the changeset viewer.