Added loop option in Replay app

Updated binary
This commit is contained in:
furrtek 2017-12-11 04:14:54 +00:00
parent 70c7646743
commit c9381f1418
9 changed files with 117 additions and 101 deletions

View file

@ -997,13 +997,13 @@ public:
class ReplayThreadDoneMessage : public Message {
public:
constexpr ReplayThreadDoneMessage(
uint32_t error = 0
uint32_t return_code = 0
) : Message { ID::ReplayThreadDone },
error { error }
return_code { return_code }
{
}
uint32_t error;
uint32_t return_code;
};
#endif/*__MESSAGE_H__*/