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