1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-12-02 00:01:33 +03:00

Include headers properly

This commit is contained in:
Davide Beatrici
2021-04-05 04:48:25 +02:00
parent 46b54f00be
commit a6ba9b8788
190 changed files with 1885 additions and 1850 deletions

View File

@ -5,6 +5,13 @@
// WebUI.h
// Header of WebUI.c
#ifndef WEBUI_H
#define WEBUI_H
#include "CedarType.h"
#include "Mayaqua/MayaType.h"
#define WU_PASSWORD_NOCHANGE "********"
#define WU_CONTEXT_EXPIRE 600000
@ -37,3 +44,4 @@ WEBUI *WuNewWebUI(CEDAR *cedar);
WU_WEBPAGE *WuGetPage(char *target, WEBUI *wu);
void WuFreeWebPage(WU_WEBPAGE *page);
#endif