mirror of https://github.com/tongzx/nt5src
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.
46 lines
613 B
46 lines
613 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
start.h
|
|
|
|
Abstract:
|
|
|
|
Service start function prototypes.
|
|
|
|
Author:
|
|
|
|
Rita Wong (ritaw) 06-Apr-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef SCSTART_INCLUDED
|
|
#define SCSTART_INCLUDED
|
|
|
|
//
|
|
// Function Prototypes
|
|
//
|
|
|
|
DWORD
|
|
ScStartService(
|
|
IN LPSERVICE_RECORD ServiceRecord,
|
|
IN DWORD NumArgs,
|
|
IN LPSTRING_PTRSW CmdArgs
|
|
);
|
|
|
|
BOOL
|
|
ScAllowInteractiveServices(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
ScInitStartupInfo(
|
|
OUT LPSTARTUPINFOW StartupInfo,
|
|
IN BOOL bInteractive
|
|
);
|
|
|
|
#endif // #ifndef SCSTART_INCLUDED
|