WHY2/include/flags.h

17 lines
344 B
C
Raw Normal View History

2022-03-20 18:12:25 +01:00
#ifndef WHY2_FLAGS_H
#define WHY2_FLAGS_H
#define KEY_LENGTH 50
#define ENCRYPTION_SEPARATOR '.'
#define ENCRYPTION_SEPARATOR_STRING "."
#define INVALID_KEY 1
2022-04-29 18:58:03 +02:00
#define VERSION "v2.2"
2022-04-23 18:46:01 +02:00
#define VERSIONS_URL "https://raw.githubusercontent.com/ENGO150/WHY2/master/versions.json"
2022-04-07 17:26:41 +02:00
#define VERSIONS_NAME "versions.json"
2022-04-04 18:07:42 +02:00
#define SKIP_CHECK 1
2022-04-07 17:26:41 +02:00
#endif