1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef __HEALTHMANAGER_MSG_G_H
- #define __HEALTHMANAGER_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace HealthManager {
- #define eMsg_TradeManage 0
- #define eMsg_TerminalManager 1
- #define eMsg_AuthStatus 2
- #define eMsgSig_TradeManage 1347045541
- #define eMsgSig_TerminalManager 1453185458
- #define eMsgSig_AuthStatus -1654977732
- struct TradeManage
- {
- int op;
- CSimpleStringA time;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & op & time;
- }
- };
- ///////////////////////////
- struct TerminalManager
- {
- int op;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & op;
- }
- };
- ///////////////////////////
- struct AuthStatus
- {
- int result;
- CSimpleStringA msg;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & result & msg;
- }
- };
- ///////////////////////////
- } // namespace HealthManager
- #endif // __HEALTHMANAGER_MSG_G_H
|