aboutsummaryrefslogtreecommitdiff
path: root/zenserver/windows/service.h
blob: 0f76d744724f8ee9ed04f3efe955ea44f3827ab8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Epic Games, Inc. All Rights Reserved.

#pragma once

void SvcInstall(void);
void SvcDelete();

class WindowsServiceBase
{
public:
	WindowsServiceBase();
	~WindowsServiceBase();

private:
};