mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Merge PR #632: Cedar: fix implicit function declaration warnings
This commit is contained in:
commit
8a2901f48e
@ -2048,7 +2048,11 @@ bool PasswordPrompt(char *password, UINT size)
|
|||||||
else if (c == 0xE0)
|
else if (c == 0xE0)
|
||||||
{
|
{
|
||||||
// Read one more character
|
// Read one more character
|
||||||
|
#ifdef OS_WIN32
|
||||||
c = getch();
|
c = getch();
|
||||||
|
#else // OS_WIN32
|
||||||
|
c = getc(stdin);
|
||||||
|
#endif // OS_WIN32
|
||||||
if (c == 0x4B || c == 0x53)
|
if (c == 0x4B || c == 0x53)
|
||||||
{
|
{
|
||||||
// Backspace
|
// Backspace
|
||||||
|
@ -131,6 +131,7 @@ struct VLAN
|
|||||||
VLAN *NewVLan(char *instance_name, VLAN_PARAM *param);
|
VLAN *NewVLan(char *instance_name, VLAN_PARAM *param);
|
||||||
VLAN *NewTap(char *name, char *mac_address, bool create_up);
|
VLAN *NewTap(char *name, char *mac_address, bool create_up);
|
||||||
void FreeVLan(VLAN *v);
|
void FreeVLan(VLAN *v);
|
||||||
|
void FreeTap(VLAN *v);
|
||||||
CANCEL *VLanGetCancel(VLAN *v);
|
CANCEL *VLanGetCancel(VLAN *v);
|
||||||
bool VLanGetNextPacket(VLAN *v, void **buf, UINT *size);
|
bool VLanGetNextPacket(VLAN *v, void **buf, UINT *size);
|
||||||
bool VLanPutPacket(VLAN *v, void *buf, UINT size);
|
bool VLanPutPacket(VLAN *v, void *buf, UINT size);
|
||||||
|
Loading…
Reference in New Issue
Block a user