Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <cstdint> |
| 4 | |
Patrick Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 5 | namespace ipmi_flash |
Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 6 | { |
| 7 | |
Patrick Venture | da66fd8 | 2019-06-03 11:11:24 -0700 | [diff] [blame] | 8 | /** The status of the update mechanism or the verification mechanism */ |
| 9 | enum class ActionStatus : std::uint8_t |
Patrick Venture | 8e801e1 | 2019-05-20 13:42:45 -0700 | [diff] [blame] | 10 | { |
| 11 | running = 0, |
| 12 | success = 1, |
| 13 | failed = 2, |
| 14 | unknown = 3, |
| 15 | }; |
| 16 | |
| 17 | } // namespace ipmi_flash |