summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 08d0b603ac..464614dcf9 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -379,13 +379,13 @@ struct plugin_api {
379 int (*fdprintf)(int fd, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3); 379 int (*fdprintf)(int fd, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3);
380 int (*read_line)(int fd, char* buffer, int buffer_size); 380 int (*read_line)(int fd, char* buffer, int buffer_size);
381 bool (*settings_parseline)(char* line, char** name, char** value); 381 bool (*settings_parseline)(char* line, char** name, char** value);
382 void (*ata_sleep)(void); 382 void (*storage_sleep)(void);
383 void (*ata_spin)(void); 383 void (*storage_spin)(void);
384 void (*ata_spindown)(int seconds); 384 void (*storage_spindown)(int seconds);
385#if USING_ATA_CALLBACK 385#if USING_STORAGE_CALLBACK
386 void (*register_ata_idle_func)(ata_idle_notify function); 386 void (*register_storage_idle_func)(storage_idle_notify function);
387 void (*unregister_ata_idle_func)(ata_idle_notify function, bool run); 387 void (*unregister_storage_idle_func)(storage_idle_notify function, bool run);
388#endif /* USING_ATA_CALLBACK */ 388#endif /* USING_STORAGE_CALLBACK */
389 void (*reload_directory)(void); 389 void (*reload_directory)(void);
390 char *(*create_numbered_filename)(char *buffer, const char *path, 390 char *(*create_numbered_filename)(char *buffer, const char *path,
391 const char *prefix, const char *suffix, 391 const char *prefix, const char *suffix,