chore: reduce debt with const values
This commit is contained in:
+12
-11
@@ -3,22 +3,23 @@
|
||||
#ifndef STATE_H
|
||||
#define STATE_H
|
||||
|
||||
void state_parse_config(StateConfig *state_config, ConfigFile *config);
|
||||
void state_parse_config(StateConfig *state_config, const ConfigFile *config);
|
||||
|
||||
void state_apply_event(SharedContext *context, StateConfig *state_config,
|
||||
MidiDevice *midi, unsigned char code,
|
||||
void state_apply_event(SharedContext *context, const StateConfig *state_config,
|
||||
const MidiDevice *midi, unsigned char code,
|
||||
unsigned char value, bool trace_midi);
|
||||
|
||||
bool state_background_write(SharedContext *context, StateConfig *state_config,
|
||||
MidiDevice *midi);
|
||||
bool state_background_write(SharedContext *context,
|
||||
const StateConfig *state_config,
|
||||
const MidiDevice *midi);
|
||||
|
||||
void state_init(SharedContext *context, StateConfig *state_config, bool demo,
|
||||
bool auto_random, unsigned int base_tempo, char *state_file,
|
||||
bool load_state);
|
||||
void state_init(SharedContext *context, const StateConfig *state_config,
|
||||
bool demo, bool auto_random, unsigned int base_tempo,
|
||||
const char *state_file, bool load_state);
|
||||
|
||||
void state_randomize(SharedContext *context, StateConfig *state_config);
|
||||
void state_randomize(SharedContext *context, const StateConfig *state_config);
|
||||
|
||||
void state_save(SharedContext *context, StateConfig *state_config,
|
||||
char *state_file);
|
||||
void state_save(const SharedContext *context, const StateConfig *state_config,
|
||||
const char *state_file);
|
||||
|
||||
#endif /* STATE_H */
|
||||
Reference in New Issue
Block a user