2021-09-01 23:22:40 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-07-26 12:21:51 +00:00
|
|
|
#include "bt_settings_filename.h"
|
|
|
|
|
2021-09-01 23:22:40 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2023-01-27 09:41:55 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-09-01 23:22:40 +00:00
|
|
|
typedef struct {
|
|
|
|
bool enabled;
|
|
|
|
} BtSettings;
|
|
|
|
|
|
|
|
bool bt_settings_load(BtSettings* bt_settings);
|
|
|
|
|
|
|
|
bool bt_settings_save(BtSettings* bt_settings);
|
2023-01-27 09:41:55 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|