forked from len0rd/rockbox
FS#10704 - Make a configuration option to disable USB HID
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23322 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6314952ff1
commit
83d24f89df
14 changed files with 137 additions and 57 deletions
|
@ -92,6 +92,7 @@ bool dir_exists(const char *path);
|
|||
*/
|
||||
char *strip_extension(char* buffer, int buffer_size, const char *filename);
|
||||
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
/* A simplified scanf */
|
||||
/*
|
||||
* Checks whether the value at position 'position' was really read
|
||||
|
@ -103,4 +104,10 @@ char *strip_extension(char* buffer, int buffer_size, const char *filename);
|
|||
const char* parse_list(const char *fmt, uint32_t *set_vals,
|
||||
const char sep, const char* str, ...);
|
||||
|
||||
/* only used in USB HID and set_time screen */
|
||||
#if defined(USB_ENABLE_HID) || (CONFIG_RTC != 0)
|
||||
int clamp_value_wrap(int value, int max, int min);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* MISC_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue