forked from len0rd/rockbox
Convert lcd_activation callbacks to use the event system to allow for multiple parallel callbacks (for custom statusbar).
Increase maximum event count as we need more (I actually had a report about it during custom statusbar testing). Removed corresponding functions from the core and plugin api. Bump min version and sort. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23302 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
774bacc692
commit
d85c3ec410
32 changed files with 57 additions and 117 deletions
|
|
@ -22,7 +22,9 @@
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "config.h"
|
||||
#include "system.h"
|
||||
#include "lcd.h"
|
||||
|
||||
#ifdef HAVE_LCD_ENABLE
|
||||
|
|
@ -82,7 +84,7 @@ void lcd_awake(void)
|
|||
{
|
||||
if (lcd_sleeping)
|
||||
{
|
||||
lcd_activation_call_hook();
|
||||
send_event(LCD_EVENT_ACTIVATION, NULL);
|
||||
lcd_sleeping = false;
|
||||
}
|
||||
}
|
||||
|
|
@ -96,7 +98,7 @@ void lcd_enable(bool on)
|
|||
/* lcd_awake will handle the activation call */
|
||||
lcd_awake();
|
||||
#else
|
||||
lcd_activation_call_hook();
|
||||
send_event(LCD_EVENT_ACTIVATION, NULL);
|
||||
#endif
|
||||
}
|
||||
lcd_enabled = on;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue