summaryrefslogtreecommitdiff
path: root/bin/bbackupd/Win32ServiceFunctions.h
blob: 70e1f085c9d53d6deeaf71ee1d3e54129d715a5f (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