Change function signatures

This commit is contained in:
twinaphex 2020-03-05 18:32:13 +01:00
parent c6f3b4a6da
commit c5cb509f1b
1 changed files with 4 additions and 4 deletions

View File

@ -121,23 +121,23 @@ void disk_control_get_image_label(
/* Sets the eject state of the virtual disk tray */ /* Sets the eject state of the virtual disk tray */
bool disk_control_set_eject_state( bool disk_control_set_eject_state(
disk_control_interface_t *disk_control, disk_control_interface_t *disk_control,
bool eject, bool verbose); bool eject, bool verbosity);
/* Sets currently selected disk index /* Sets currently selected disk index
* NOTE: Will fail if disk is not currently ejected */ * NOTE: Will fail if disk is not currently ejected */
bool disk_control_set_index( bool disk_control_set_index(
disk_control_interface_t *disk_control, disk_control_interface_t *disk_control,
unsigned index, bool verbose); unsigned index, bool verbosity);
/* Increments selected disk index */ /* Increments selected disk index */
bool disk_control_set_index_next( bool disk_control_set_index_next(
disk_control_interface_t *disk_control, disk_control_interface_t *disk_control,
bool verbose); bool verbosity);
/* Decrements selected disk index */ /* Decrements selected disk index */
bool disk_control_set_index_prev( bool disk_control_set_index_prev(
disk_control_interface_t *disk_control, disk_control_interface_t *disk_control,
bool verbose); bool verbosity);
/* Appends specified image file to disk image list */ /* Appends specified image file to disk image list */
bool disk_control_append_image( bool disk_control_append_image(