1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-09-19 17:59:19 +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

@ -1,7 +1,7 @@
set(COMPONENT_NAME "Testing Utility")
set(COMPONENT_INTERNAL_NAME "vpntest")
add_executable(vpntest vpntest.c vpntest.h)
add_executable(vpntest vpntest.c)
set_target_properties(vpntest
PROPERTIES

View File

@ -1,18 +1,19 @@
// vpntest.c
// VPN Server / VPN Client / VPN Bridge test program
#include <GlobalConst.h>
#define VPN_EXE
#define VPN_EXE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <stdarg.h>
#include <time.h>
#include <Mayaqua/Mayaqua.h>
#include <Cedar/Cedar.h>
#include "vpntest.h"
#include "Cedar/Client.h"
#include "Cedar/CM.h"
#include "Cedar/Command.h"
#include "Cedar/Server.h"
#include "Cedar/SM.h"
#include "Mayaqua/Internat.h"
#include "Mayaqua/Mayaqua.h"
#include "Mayaqua/Memory.h"
#include "Mayaqua/Microsoft.h"
#include "Mayaqua/Str.h"
void client_test(UINT num, char **arg)
{

View File

@ -1 +0,0 @@