@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: State of the services to be enumerated by EnumServicesStatus !!!!C# Definition: [Flags] public enum SERVICE_STATES : 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 !!!!Notes: see EnumServicesStatus Documentation: SERVICE_STATES@msdn on MSDN
Edit Enums.SERVICE_STATES
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.