mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-23 09:59:52 +03:00
21 lines
365 B
C
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;
|
|
}
|