blob: 27af39094d4b1b58e3da386628c123ab6ed4f793 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 4f 54 54 4f 00 0c 00 80 00 03 00 40 43 46 46 20 24 70 67 3e 00 00 0f 80 00 00 c0 66 44 53 49 47 | OTTO.......@CFF.$pg>.......fDSIG |
| 0020 | 6a 8c 7e f0 00 01 b2 00 00 00 03 f4 47 50 4f 53 f8 da f6 71 00 00 cf e8 00 00 cb 5a 47 53 55 42 | j.~...using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Common
{
/// <summary>
/// Represents the various PPC application states.
/// </summary>
public enum ApplicationStates
{
/// <summary>
/// Before the machine has past the provisioning step by the <see cref="MachineSetup.IMachineSetupManager"/>.
/// </summary>
PreSetup = 0,
/// <summary>
/// Application is ready to run as normal.
/// </summary>
Ready = 1,
/// <summary>
/// Performs a machine provisioning without operation system changes.
/// </summary>
FactoryRestore = 2,
}
}
|