HeartBeat_msg_g.h 701 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #ifndef __HEARTBEAT_MSG_G_H
  2. #define __HEARTBEAT_MSG_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace HeartBeat {
  7. #define eMsg_NotifyIEToCall 0
  8. #define eMsg_NotifyIECallResult 1
  9. #define eMsgSig_NotifyIEToCall -982289580
  10. #define eMsgSig_NotifyIECallResult 793158337
  11. struct NotifyIEToCall
  12. {
  13. CSimpleStringA context;
  14. void Serialize(SpBuffer &Buf)
  15. {
  16. auto & buf = Buf & context;
  17. }
  18. };
  19. ///////////////////////////
  20. struct NotifyIECallResult
  21. {
  22. int error;
  23. CSimpleStringA ans_context;
  24. void Serialize(SpBuffer &Buf)
  25. {
  26. auto & buf = Buf & error & ans_context;
  27. }
  28. };
  29. ///////////////////////////
  30. } // namespace HeartBeat
  31. #endif // __HEARTBEAT_MSG_G_H