mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-25 02:49:52 +03:00
19 lines
337 B
C
19 lines
337 B
C
// SoftEther VPN Source Code - Developer Edition Master Branch
|
|
// Cedar Communication Module
|
|
|
|
|
|
// Database.h
|
|
// Header of Database.c
|
|
|
|
#ifndef DATABASE_H
|
|
#define DATABASE_H
|
|
|
|
wchar_t *LiGetLicenseStatusStr(UINT i);
|
|
bool LiIsLicenseKey(char *str);
|
|
bool LiStrToKeyBit(UCHAR *keybit, char *keystr);
|
|
|
|
|
|
#endif // DATABASE_H
|
|
|
|
|