summaryrefslogtreecommitdiff
path: root/bin/bbackupd/Win32ServiceFunctions.h
blob: 3fe7718766050aec4a9bd52bbd1523b52c8154a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//***************************************************************
// From the book "Win32 System Services: The Heart of Windows 98
// and Windows 2000"
// by Marshall Brain
// Published by Prentice Hall
// Copyright 1995 Prentice Hall.
//
// This code implements the Windows API Service interface
// for the Box Backup for Windows native port.
//***************************************************************

#ifndef WIN32SERVICEFUNCTIONS_H
#define WIN32SERVICEFUNCTIONS_H

int  RemoveService(void);
int  InstallService(const char* pConfigFilePath);
void OurService(char* pConfigFileName);

#endif