1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-23 09:59:52 +03:00
SoftEtherVPN/src/vpnsetup/vpnsetup.c
2021-04-05 04:48:25 +02:00

21 lines
365 B
C

// SoftEther VPN Source Code - Developer Edition Master Branch
// Cedar Communication Module
#include "Cedar/SW.h"
#include "Mayaqua/Mayaqua.h"
// WinMain function
int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow)
{
UINT ret;
InitProcessCallOnce();
ret = SWExec();
ExitProcess(ret);
return (int)ret;
}