13 lines
203 B
C
13 lines
203 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
typedef struct {
|
||
|
bool enabled;
|
||
|
} BtSettings;
|
||
|
|
||
|
bool bt_settings_load(BtSettings* bt_settings);
|
||
|
|
||
|
bool bt_settings_save(BtSettings* bt_settings);
|