Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

SERVICE_STATE (Enums)
 
.
Summary
Summary
TODO - a short description

C# Definition:

[Flags]
public enum SERVICE_STATES : int
public enum SERVICE_STATE : int
{
     SERVICE_ACTIVE      = 0x00000001,
     SERVICE_INACTIVE    = 0x00000002,
     SERVICE_STATE_ALL   = SERVICE_ACTIVE | SERVICE_INACTIVE
}

VB Definition:

<Flags()> _

Public Enum SERVICE_STATES : int32

    SERVICE_ACTIVE = &H1
    SERVICE_INACTIVE = &H2
    SERVICE_STATE_ALL = SERVICE_ACTIVE Or SERVICE_INACTIVE

End Enum

Enum SERVICE_STATE as Integer
    SERVICE_ACTIVE      = 1
    SERVICE_INACTIVE    = 2    
    SERVICE_STATE_ALL   = SERVICE_ACTIVE or SERVICE_INACTIVE
End Enum

Notes:

see EnumServicesStatus

see EnumServicesStatus and EnumDependentServices

Documentation
Documentation
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions