Desktop Functions: Smart Device Functions:
|
Search Results for "StartService" in [All]advapi32
/// Required to call the StartService function to start the service.
/// calls the StartService function. For more information, see
''' Required to call the StartService function to start the service.
''' calls the StartService function. For more information, see 2: StartService
public static extern bool StartService(
Declare Function StartService Lib "advapi32.dll" Alias "StartServiceA" (ByVal hService As IntPtr, ByVal dwNumServiceArgs As Long, ByVal lpServiceArgVectors As String) As Boolean
Win32.StartService( hService, 0, null ) ;
Dim ret As Boolean = StartService(scManager, 0, Nothing) http://msdn.microsoft.com/library/en-us/dllproc/base/startservice.asp?frame=true Enums
RestartService = 1,
RestartService = 1 |