SIPPhone_msg_g.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #ifndef __SIPPHONE_MSG_G_H
  2. #define __SIPPHONE_MSG_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace SIPPhone {
  7. #define eMsg_VideoBoxStartMove 0
  8. #define eMsg_VideoBoxStopMove 1
  9. #define eMsg_UIMessageBox 2
  10. #define eMsgSig_VideoBoxStartMove 1550716217
  11. #define eMsgSig_VideoBoxStopMove 164922697
  12. #define eMsgSig_UIMessageBox 918510708
  13. struct VideoBoxStartMove
  14. {
  15. unsigned int videoboxflag;
  16. unsigned int leftlowerx;
  17. unsigned int leftlowery;
  18. void Serialize(SpBuffer &Buf)
  19. {
  20. auto & buf = Buf & videoboxflag & leftlowerx & leftlowery;
  21. }
  22. };
  23. ///////////////////////////
  24. struct VideoBoxStopMove
  25. {
  26. unsigned int videoboxflag;
  27. unsigned int leftlowerx;
  28. unsigned int leftlowery;
  29. void Serialize(SpBuffer &Buf)
  30. {
  31. auto & buf = Buf & videoboxflag & leftlowerx & leftlowery;
  32. }
  33. };
  34. ///////////////////////////
  35. struct UIMessageBox
  36. {
  37. unsigned int uboxtype;
  38. CSimpleStringW strtitle;
  39. CSimpleStringW strmessage;
  40. void Serialize(SpBuffer &Buf)
  41. {
  42. auto & buf = Buf & uboxtype & strtitle & strmessage;
  43. }
  44. };
  45. ///////////////////////////
  46. } // namespace SIPPhone
  47. #endif // __SIPPHONE_MSG_G_H