bt_settings.h 238 B

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