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.
40 lines
510 B
40 lines
510 B
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, 1992 - 1999
|
|
|
|
Module Name:
|
|
|
|
startsvc.h
|
|
|
|
Abstract:
|
|
|
|
This file contains the interface for insuring that the rpcss service
|
|
has been started.
|
|
|
|
Author:
|
|
|
|
Michael Montague (mikemon) (02-Oct-1992)
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __STARTSVC_H__
|
|
#define __STARTSVC_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
RPC_STATUS
|
|
StartServiceIfNecessary (
|
|
void
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // __STARTSVC_H__
|
|
|