mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-19 11:21:39 +03:00
16 lines
298 B
C
16 lines
298 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#define DESKTOP_SETTINGS_VER (0)
|
||
|
|
||
|
typedef struct {
|
||
|
uint8_t version;
|
||
|
uint16_t favorite;
|
||
|
} DesktopSettings;
|
||
|
|
||
|
bool desktop_settings_load(DesktopSettings* desktop_settings);
|
||
|
|
||
|
bool desktop_settings_save(DesktopSettings* desktop_settings);
|