summaryrefslogtreecommitdiff
path: root/bin/bbackupd/Win32ServiceFunctions.h
blob: 683cb8a6205fbba82d1a8af182fde8eaa6dbc36f (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);
int OurService     (const char* pConfigFileName);

#endif