1 #pragma once
2 
3 #include <stdint.h>
4 
5 // Various GLOBAL operations under a single command.
6 enum ipmi_global_control_cmds : uint8_t
7 {
8     IPMI_CMD_COLD_RESET = 0x02,
9 };
10