#ifndef __SIPPHONE_MSG_G_H #define __SIPPHONE_MSG_G_H #pragma once // This code is generated by spgen tool! #include "SpHelper.h" namespace SIPPhone { #define eMsg_VideoBoxStartMove 0 #define eMsg_VideoBoxStopMove 1 #define eMsg_UIMessageBox 2 #define eMsgSig_VideoBoxStartMove 1550716217 #define eMsgSig_VideoBoxStopMove 164922697 #define eMsgSig_UIMessageBox 918510708 struct VideoBoxStartMove { unsigned int videoboxflag; unsigned int leftlowerx; unsigned int leftlowery; void Serialize(SpBuffer &Buf) { auto & buf = Buf & videoboxflag & leftlowerx & leftlowery; } }; /////////////////////////// struct VideoBoxStopMove { unsigned int videoboxflag; unsigned int leftlowerx; unsigned int leftlowery; void Serialize(SpBuffer &Buf) { auto & buf = Buf & videoboxflag & leftlowerx & leftlowery; } }; /////////////////////////// struct UIMessageBox { unsigned int uboxtype; CSimpleStringW strtitle; CSimpleStringW strmessage; void Serialize(SpBuffer &Buf) { auto & buf = Buf & uboxtype & strtitle & strmessage; } }; /////////////////////////// } // namespace SIPPhone #endif // __SIPPHONE_MSG_G_H