47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/****************************** Module Header ******************************\
|
|
* Module Name: SampleService.cpp
|
|
* Project: CppWindowsService
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Provides a sample service class that derives from the service base class -
|
|
* CServiceBase. The sample service logs the service start and stop
|
|
* information to the Application event log, and shows how to run the main
|
|
* function of the service in a thread pool worker thread.
|
|
*
|
|
* This source is subject to the Microsoft Public License.
|
|
* See http://www.microsoft.com/en-us/openness/resources/licenses.aspx#MPL.
|
|
* All other rights reserved.
|
|
*
|
|
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
|
* EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
\***************************************************************************/
|
|
|
|
#pragma region Includes
|
|
#include "ZeroTierOneService.h"
|
|
#pragma endregion
|
|
|
|
ZeroTierOneService::ZeroTierOneService() :
|
|
CServiceBase(ZT_SERVICE_NAME,TRUE,TRUE,TRUE)
|
|
{
|
|
}
|
|
|
|
ZeroTierOneService::~ZeroTierOneService(void)
|
|
{
|
|
}
|
|
|
|
void ZeroTierOneService::OnStart(DWORD dwArgc, LPSTR *lpszArgv)
|
|
{
|
|
}
|
|
|
|
void ZeroTierOneService::OnStop()
|
|
{
|
|
}
|
|
|
|
void ZeroTierOneService::OnPause()
|
|
{
|
|
}
|
|
|
|
void ZeroTierOneService::OnContinue()
|
|
{
|
|
}
|