mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-12 03:04:02 +00:00
18 lines
338 B
C
18 lines
338 B
C
#ifndef AUDIO_H
|
|
#define AUDIO_H
|
|
|
|
void set_volume(int cmd);
|
|
int get_volume();
|
|
int get_core_volume();
|
|
void set_core_volume(int cmd);
|
|
void send_volume();
|
|
void save_volume();
|
|
void load_volume();
|
|
|
|
int audio_filter_en();
|
|
char* audio_get_filter(int only_name);
|
|
void audio_set_filter(const char *name);
|
|
void audio_set_filter_en(int n);
|
|
|
|
#endif
|