diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 41375a6..6ff7e7e 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -403,8 +403,8 @@ struct plugin_api { void (*storage_spin)(void); void (*storage_spindown)(int seconds); #if USING_STORAGE_CALLBACK - void (*register_storage_idle_func)(storage_idle_notify function); - void (*unregister_storage_idle_func)(storage_idle_notify function, bool run); + void (*register_storage_idle_func)(void (*function)(void *data)); + void (*unregister_storage_idle_func)(void (*function)(void *data), bool run); #endif /* USING_STORAGE_CALLBACK */ void (*reload_directory)(void); char *(*create_numbered_filename)(char *buffer, const char *path, |