From d9014f5db9f7bd962a310d3c5aa4737b067cec5c Mon Sep 17 00:00:00 2001 From: jjasper4 Date: Sat, 8 Nov 2008 22:21:58 +0000 Subject: [PATCH] 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 --- WmiSchema.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WmiSchema.cs b/WmiSchema.cs index c8caf6a..0932a9a 100755 --- a/WmiSchema.cs +++ b/WmiSchema.cs @@ -48,7 +48,7 @@ namespace WMI 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); - 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); }