GUI-FreeRDP/db.h

20 lines
333 B
C
Raw Normal View History

/*
* 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_ */