1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef __LOCALMEDIAPLAY_MSG_G_H
- #define __LOCALMEDIAPLAY_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace LocalMediaPlay {
- #define eMsg_AudioPlayRet 0
- #define eMsg_VideoPlayRet 1
- #define eMsgSig_AudioPlayRet -1055633973
- #define eMsgSig_VideoPlayRet 963429899
- struct AudioPlayRet
- {
- CSimpleStringA AudioNames;
- bool ret;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & AudioNames & ret;
- }
- };
- ///////////////////////////
- struct VideoPlayRet
- {
- CSimpleStringA VideoNames;
- bool ret;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & VideoNames & ret;
- }
- };
- ///////////////////////////
- } // namespace LocalMediaPlay
- #endif // __LOCALMEDIAPLAY_MSG_G_H
|