Update remaining platform backends
This commit is contained in:
parent
7d51a80007
commit
f5828667a6
2 changed files with 8 additions and 2 deletions
|
@ -4,8 +4,11 @@
|
|||
|
||||
#include "../../Attributes.h"
|
||||
|
||||
bool Backend_Init(void)
|
||||
bool Backend_Init(void (*drag_and_drop_callback)(const char *path), void (*window_focus_callback)(bool focus));
|
||||
{
|
||||
(void)drag_and_drop_callback;
|
||||
(void)window_focus_callback;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,8 +16,11 @@
|
|||
|
||||
static unsigned long ticks_per_second;
|
||||
|
||||
bool Backend_Init(void)
|
||||
bool Backend_Init(void (*drag_and_drop_callback)(const char *path), void (*window_focus_callback)(bool focus));
|
||||
{
|
||||
(void)drag_and_drop_callback;
|
||||
(void)window_focus_callback;
|
||||
|
||||
WHBProcInit();
|
||||
|
||||
if (!WHBMountSdCard())
|
||||
|
|
Loading…
Add table
Reference in a new issue