9 lines
181 B
C
9 lines
181 B
C
#ifndef _SETTINGS_H
|
|
#define _SETTINGS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool settings_get_focus_on_wheel();
|
|
void settings_set_focus_on_wheel(bool new_focus_on_wheel);
|
|
|
|
#endif // _SETTINGS_H
|