12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #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 eMsgSig_NotifyEnterFlow 1397875158
- #define eMsgSig_ACMFlowInvoke 2025290751
- #define eMsgSig_AgentFlowResult 87091676
- struct NotifyEnterFlow
- {
- CSimpleStringW context;
- void Serialize(SpBuffer &Buf)
- {
- Buf & context;
- }
- };
- ///////////////////////////
- struct ACMFlowInvoke
- {
- CSimpleStringW req_context;
- void Serialize(SpBuffer &Buf)
- {
- Buf & req_context;
- }
- };
- ///////////////////////////
- struct AgentFlowResult
- {
- int error;
- CSimpleStringW ans_context;
- void Serialize(SpBuffer &Buf)
- {
- Buf & error & ans_context;
- }
- };
- ///////////////////////////
- } // namespace InitiativeTransfer
- #endif // __INITIATIVETRANSFER_MSG_G_H
|