bt_settings.h 203 B

123456789101112
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4. typedef struct {
  5. bool enabled;
  6. } BtSettings;
  7. bool bt_settings_load(BtSettings* bt_settings);
  8. bool bt_settings_save(BtSettings* bt_settings);