1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-23 18:09:53 +03:00
SoftEtherVPN/src/vpnsetup/vpnsetup.c

21 lines
365 B
C
Raw Normal View History

2017-10-19 05:48:23 +03:00
// SoftEther VPN Source Code - Developer Edition Master Branch
2014-01-04 17:00:08 +04:00
// Cedar Communication Module
2021-04-05 05:48:25 +03:00
#include "Cedar/SW.h"
2014-01-04 17:00:08 +04:00
2021-04-05 05:48:25 +03:00
#include "Mayaqua/Mayaqua.h"
2014-01-04 17:00:08 +04:00
// WinMain function
int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow)
{
UINT ret;
InitProcessCallOnce();
2014-01-04 17:00:08 +04:00
ret = SWExec();
ExitProcess(ret);
return (int)ret;
}