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 // Forward declare RATGDOClient
class RATGDOClient; class RATGDOClient;
typedef struct { struct cmd {
uint64_t fixed; uint64_t fixed;
uint32_t data; uint32_t data;
inline bool operator!=(cmd const &other) const inline bool operator!=(cmd const &other) const
{ {
return (fixed != other.fixed || data != other.data); return (fixed != other.fixed || data != other.data);
} }
} cmd; };
typedef struct { typedef struct {
cmd REBOOT1; cmd REBOOT1;