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 | |||||
8 | enum class VerifyCheckResponses : std::uint8_t | ||||
9 | { | ||||
10 | running = 0, | ||||
11 | success = 1, | ||||
12 | failed = 2, | ||||
13 | other = 3, | ||||
14 | }; | ||||
15 | } |