10 lines
192 B
C
10 lines
192 B
C
|
#ifndef VALIDATE_H
|
||
|
#define VALIDATE_H
|
||
|
|
||
|
#define KEYSTORE_FILE ".keystore"
|
||
|
#define KEYLENGTH 19
|
||
|
|
||
|
int check_is_key_valid(const char* key);
|
||
|
void build_license_key_popup();
|
||
|
|
||
|
#endif /* VALIDATE_H */
|