WHY2/include/flags.h

31 lines
584 B
C
Raw Normal View History

2022-03-20 18:12:25 +01:00
#ifndef WHY2_FLAGS_H
#define WHY2_FLAGS_H
//CONSTS
2022-03-20 18:12:25 +01:00
#define ENCRYPTION_SEPARATOR '.'
#define ENCRYPTION_SEPARATOR_STRING "."
#define INVALID_KEY 1
2022-05-03 18:53:03 +02:00
#define VERSION "v3.1"
2022-05-02 19:58:34 +02:00
#define VERSIONS_URL "https://raw.githubusercontent.com/ENGO150/WHY2/stable/versions.json"
2022-04-07 17:26:41 +02:00
#define VERSIONS_NAME "versions.json"
2022-04-04 18:07:42 +02:00
//VARIABLES
static int keyLength = 50;
2022-05-04 18:42:30 +02:00
static int skipCheck = 0;
2022-05-04 18:42:30 +02:00
static int noOutput = 0;
//FUNCTIONS
int getSkipCheck();
void setSkipCheck(int skipCheckNew);
int getKeyLength();
void setKeyLength(int keyLengthNew);
2022-05-04 18:42:30 +02:00
int getNoOutput();
void setNoOutput(int noOutputNew);
2022-04-07 17:26:41 +02:00
#endif