Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceControlCommand.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
7 public enum ServiceControlCommand : uint
8 {
9 Stop = 0x00000001,
10 Pause = 0x00000002,
11 Continue = 0x00000003,
12 Interrogate = 0x00000004,
13 Shutdown = 0x00000005,
14 Paramchange = 0x00000006,
15 NetBindAdd = 0x00000007,
16 NetBindRemoved = 0x00000008,
17 NetBindEnable = 0x00000009,
18 NetBindDisable = 0x0000000A,
19 DeviceEvent = 0x0000000B,
20 HardwareProfileChange = 0x0000000C,
21 PowerEvent = 0x0000000D,
22 SessionChange = 0x0000000E,
23 PreShutdown = 0x0000000F,
24 TimeChange = 0x00000010,
25 TriggerEvent = 0x00000020,
26 UserModeReboot = 0x00000040
27 }
28}