You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
435 B
18 lines
435 B
//--------------------------------------------------------------------
|
|
// ServiceHost - header
|
|
// Copyright (C) Microsoft Corporation, 1999
|
|
//
|
|
// Created by: Louis Thomas (louisth), 9-9-99
|
|
//
|
|
// Stuff for hosting a service dll
|
|
//
|
|
|
|
#ifndef SERVICE_HOST_H
|
|
#define SERVICE_HOST_H
|
|
|
|
HRESULT RunAsService(void);
|
|
HRESULT RunAsTestService(void);
|
|
HRESULT RegisterDll(void);
|
|
HRESULT UnregisterDll(void);
|
|
|
|
#endif //SERVICE_HOST_H
|