fix
This commit is contained in:
parent
cd318cb388
commit
a75f5febf4
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue