12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef __HEARTBEAT_MSG_G_H
- #define __HEARTBEAT_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace HeartBeat {
- #define eMsg_NotifyIEToCall 0
- #define eMsg_NotifyIECallResult 1
- #define eMsgSig_NotifyIEToCall -982289580
- #define eMsgSig_NotifyIECallResult 793158337
- struct NotifyIEToCall
- {
- CSimpleStringA context;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & context;
- }
- };
- ///////////////////////////
- struct NotifyIECallResult
- {
- int error;
- CSimpleStringA ans_context;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & error & ans_context;
- }
- };
- ///////////////////////////
- } // namespace HeartBeat
- #endif // __HEARTBEAT_MSG_G_H
|