This commit is contained in:
J. Nick Koston 2023-06-09 15:22:08 -05:00
parent cd318cb388
commit a75f5febf4
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -33,14 +33,14 @@ namespace ratgdo {
// Forward declare RATGDOClient
class RATGDOClient;
typedef struct {
struct cmd {
uint64_t fixed;
uint32_t data;
inline bool operator!=(cmd const &other) const
{
return (fixed != other.fixed || data != other.data);
}
} cmd;
};
typedef struct {
cmd REBOOT1;