Support multiple optionally element depend to specify a service that must start before this service starts.

git-svn-id: https://svn.kenai.com/svn/winsw~subversion/trunk@13 c8b2a3fe-9b5b-6a51-a37e-dc31b0e308fa
remotes/git-svn
jjasper4 2008-11-08 22:21:58 +00:00
parent 127d6ca5a3
commit d9014f5db9
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ namespace WMI
public interface Win32Services : IWmiCollection public interface Win32Services : IWmiCollection
{ {
// ReturnValue Create(bool desktopInteract, string displayName, int errorControl, string loadOrderGroup, string loadOrderGroupDependencies, string name, string pathName, string serviceDependencies, string serviceType, string startMode, string startName, string startPassword); // ReturnValue Create(bool desktopInteract, string displayName, int errorControl, string loadOrderGroup, string loadOrderGroupDependencies, string name, string pathName, string serviceDependencies, string serviceType, string startMode, string startName, string startPassword);
void Create(string name, string displayName, string pathName, ServiceType serviceType, ErrorControl errorControl, StartMode startMode, bool desktopInteract); void Create(string name, string displayName, string pathName, ServiceType serviceType, ErrorControl errorControl, StartMode startMode, bool desktopInteract, string[] serviceDependencies);
Win32Service Select(string name); Win32Service Select(string name);
} }