blob: a64a7ae70d12540952205b0dd7dcd71f1e0ca0ca [file] [log] [blame]
Deepak Kodihallic6e8fb52019-05-02 08:35:31 -05001#ifndef STATES_H
2#define STATES_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include "pldm_types.h"
9
10/** @brief PLDM state set ids
11 */
12enum pldm_state_set_ids {
13 PLDM_BOOT_PROGRESS_STATE = 196,
14};
15
16/** @brief PLDM enums for the boot progress state set
17 */
18enum pldm_boot_progress_states {
19 PLDM_BOOT_NOT_ACTIVE = 1,
20 PLDM_BOOT_COMPLETED = 2,
21};
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif /* STATES_H */