This commit is contained in:
J. Nick Koston 2023-06-09 15:15:27 -05:00
parent 94e8a1d389
commit 37bda22d66
No known key found for this signature in database
1 changed files with 4 additions and 0 deletions

View File

@ -36,6 +36,10 @@ namespace ratgdo {
typedef struct {
uint64_t fixed;
uint32_t data;
bool operator==(const command& a) const
{
return (fixed == a.fixed && data == a.data);
}
} command;
typedef struct {