1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #ifndef __INITIATIVETRANSFER_MSG_G_H
- #define __INITIATIVETRANSFER_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace InitiativeTransfer {
- #define eMsg_NotifyEnterFlow 0
- #define eMsg_ACMFlowInvoke 1
- #define eMsg_AgentFlowResult 2
- #define eMsg_ChanState 3
- #define eMsgSig_NotifyEnterFlow 1397875158
- #define eMsgSig_ACMFlowInvoke 2025290751
- #define eMsgSig_AgentFlowResult 87091676
- #define eMsgSig_ChanState -701373428
- struct NotifyEnterFlow
- {
- CSimpleStringW context;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & context;
- }
- };
- ///////////////////////////
- struct ACMFlowInvoke
- {
- CSimpleStringW req_context;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & req_context;
- }
- };
- ///////////////////////////
- struct AgentFlowResult
- {
- int error;
- CSimpleStringW ans_context;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & error & ans_context;
- }
- };
- ///////////////////////////
- struct ChanState
- {
- int state;
- CSimpleStringA status;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & state & status;
- }
- };
- ///////////////////////////
- } // namespace InitiativeTransfer
- #endif // __INITIATIVETRANSFER_MSG_G_H
|