| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef __SALESAUDIOTRANS_DEF_G_H
- #define __SALESAUDIOTRANS_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace SalesAudioTrans {
- //
- // const goes here
- //
- #define SalesAudioTransService_Method_StartAudioTrans 0
- #define SalesAudioTransService_MethodSignature_StartAudioTrans -1492035223
- struct SalesAudioTransService_StartAudioTrans_Req
- {
- CSimpleStringW VideoName;
- CBlob Context;
- unsigned int ContextLen;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & VideoName & Context & ContextLen;
- }
- };
- struct SalesAudioTransService_StartAudioTrans_Ans
- {
- unsigned int ErrorCode;
- CSimpleStringW ErrorMsg;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & ErrorCode & ErrorMsg;
- }
- };
- ///////////////////////////
- } // namespace SalesAudioTrans
- #endif // __SALESAUDIOTRANS_DEF_G_H
|