TaKl/src/include/config.h

10 lines
239 B
C
Raw Normal View History

2023-07-12 11:08:40 +02:00
#ifndef DEF_CONFIG_H
#define DEF_CONFIG_H
#define VERSION "0.0.0"
#define DB_FILE "takl.sqlite3"
#define MAX_TASK_ID 10000 // max is set to MAX_TASK_ID-1
#define NEW_TASK_ID_MAX_RETRIES 10000 // number of retries before giving up
2023-07-12 11:08:40 +02:00
#endif