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