blob: c5ea42adb9b8b7864d5e695537809f2b1310db07 [file] [log] [blame]
Patrick Venture3ecb3502019-05-17 11:03:51 -07001#pragma once
2
3#include <cstdint>
4
Patrick Venture1d5a31c2019-05-20 11:38:22 -07005namespace ipmi_flash
Patrick Venture3ecb3502019-05-17 11:03:51 -07006{
7
8enum class VerifyCheckResponses : std::uint8_t
9{
10 running = 0,
11 success = 1,
12 failed = 2,
13 other = 3,
14};
15}