LocalMediaPlay_msg_g.h 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef __LOCALMEDIAPLAY_MSG_G_H
  2. #define __LOCALMEDIAPLAY_MSG_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace LocalMediaPlay {
  7. #define eMsg_AudioPlayRet 0
  8. #define eMsg_VideoPlayRet 1
  9. #define eMsgSig_AudioPlayRet -1055633973
  10. #define eMsgSig_VideoPlayRet 963429899
  11. struct AudioPlayRet
  12. {
  13. CSimpleStringA AudioNames;
  14. bool ret;
  15. void Serialize(SpBuffer &Buf)
  16. {
  17. auto & buf = Buf & AudioNames & ret;
  18. }
  19. };
  20. ///////////////////////////
  21. struct VideoPlayRet
  22. {
  23. CSimpleStringA VideoNames;
  24. bool ret;
  25. void Serialize(SpBuffer &Buf)
  26. {
  27. auto & buf = Buf & VideoNames & ret;
  28. }
  29. };
  30. ///////////////////////////
  31. } // namespace LocalMediaPlay
  32. #endif // __LOCALMEDIAPLAY_MSG_G_H