You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
400 B
C
13 lines
400 B
C
#pragma once
|
|
|
|
typedef enum _EncMethod {
|
|
Device = 0,
|
|
License = 1
|
|
}EncMethod;
|
|
|
|
extern "C" bool GenerateDeviceID(void);
|
|
extern "C" bool GenerateLicenseData(const char* flag, const char* suffix);
|
|
extern "C" bool VerifyLicense(void);
|
|
extern "C" bool AddParaForLicenseData(char* flag, char* suffix);
|
|
extern "C" bool DeleteParaForLicenseData(char* flag);
|
|
extern "C" bool AnalysisLicense(const char* flag); |