mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-23 01:49:53 +03:00
19 lines
355 B
C
19 lines
355 B
C
// SoftEther VPN Source Code - Developer Edition Master Branch
|
|
// Cedar Communication Module
|
|
|
|
|
|
// vpncsvc.h
|
|
// Header of vpncsvc.c
|
|
|
|
#ifndef VPNCSVC_H
|
|
#define VPNCSVC_H
|
|
|
|
// Function prototype
|
|
int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow);
|
|
void StartProcess();
|
|
void StopProcess();
|
|
|
|
|
|
#endif // VPNCSVC_H
|
|
|