/* * db.h * * Created on: 13 июл. 2022 г. * Author: alexander */ #ifndef DB_H_ #define DB_H_ #include "parameter.h" #include "value.h" bool dbLoadData(); bool dbWriteParameter(Parameter name, bool set); bool dbWriteValue(Value name, bool set); bool dbSetValueCurrent(Value name, char *current); #endif /* DB_H_ */