1 // SoftEther VPN Source Code - Developer Edition Master Branch
2 // Cedar Communication Module
3 
4 
5 // Database.h
6 // Header of Database.c
7 
8 #ifndef	DATABASE_H
9 #define	DATABASE_H
10 
11 #include "Mayaqua/MayaType.h"
12 
13 wchar_t *LiGetLicenseStatusStr(UINT i);
14 bool LiIsLicenseKey(char *str);
15 bool LiStrToKeyBit(UCHAR *keybit, char *keystr);
16 
17 
18 #endif	// DATABASE_H
19 
20 
21