bt_settings.h 306 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include "bt_settings_filename.h"
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. typedef struct {
  9. bool enabled;
  10. } BtSettings;
  11. bool bt_settings_load(BtSettings* bt_settings);
  12. bool bt_settings_save(BtSettings* bt_settings);
  13. #ifdef __cplusplus
  14. }
  15. #endif