123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef __RECORDER_DEF_G_H
- #define __RECORDER_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace Recorder {
- //
- // const goes here
- //
- #define RecorderSerVice_Method_StartTransactionRecord 0
- #define RecorderSerVice_Method_StopTransactionRecord 1
- #define RecorderSerVice_MethodSignature_StartTransactionRecord -227160339
- #define RecorderSerVice_MethodSignature_StopTransactionRecord 541502029
- #define RecorderSerVice_LogCode_StartTransactionRecord "QLR040231200"
- #define RecorderSerVice_LogCode_StopTransactionRecord "QLR040231201"
- struct RecorderSerVice_StartTransactionRecord_Req
- {
- CSimpleStringA VideoName;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & VideoName;
- }
- };
- struct RecorderSerVice_StartTransactionRecord_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct RecorderSerVice_StopTransactionRecord_Req
- {
- CSimpleStringA VideoName;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & VideoName;
- }
- };
- struct RecorderSerVice_StopTransactionRecord_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- ///////////////////////////
- } // namespace Recorder
- #endif // __RECORDER_DEF_G_H
|