SalesAudioTrans_def_g.h 841 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef __SALESAUDIOTRANS_DEF_G_H
  2. #define __SALESAUDIOTRANS_DEF_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace SalesAudioTrans {
  7. //
  8. // const goes here
  9. //
  10. #define SalesAudioTransService_Method_StartAudioTrans 0
  11. #define SalesAudioTransService_MethodSignature_StartAudioTrans -1492035223
  12. struct SalesAudioTransService_StartAudioTrans_Req
  13. {
  14. CSimpleStringW VideoName;
  15. CBlob Context;
  16. unsigned int ContextLen;
  17. void Serialize(SpBuffer &Buf)
  18. {
  19. auto & buf = Buf & VideoName & Context & ContextLen;
  20. }
  21. };
  22. struct SalesAudioTransService_StartAudioTrans_Ans
  23. {
  24. unsigned int ErrorCode;
  25. CSimpleStringW ErrorMsg;
  26. void Serialize(SpBuffer &Buf)
  27. {
  28. auto & buf = Buf & ErrorCode & ErrorMsg;
  29. }
  30. };
  31. ///////////////////////////
  32. } // namespace SalesAudioTrans
  33. #endif // __SALESAUDIOTRANS_DEF_G_H