IEBrowser_msg_g.h 659 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #ifndef __IEBROWSER_MSG_G_H
  2. #define __IEBROWSER_MSG_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "spHelper.h"
  6. namespace IEBrowser {
  7. #define eMsg_WebBroadcast 0
  8. #define eMsg_CustomerCmd 1
  9. #define eMsgSig_WebBroadcast -1193218700
  10. #define eMsgSig_CustomerCmd -1267458849
  11. struct WebBroadcast
  12. {
  13. CSimpleStringA broadcastJson;
  14. void Serialize(SpBuffer &Buf)
  15. {
  16. auto & buf = Buf & broadcastJson;
  17. }
  18. };
  19. ///////////////////////////
  20. struct CustomerCmd
  21. {
  22. CSimpleStringA cmdStr;
  23. void Serialize(SpBuffer &Buf)
  24. {
  25. auto & buf = Buf & cmdStr;
  26. }
  27. };
  28. ///////////////////////////
  29. } // namespace IEBrowser
  30. #endif // __IEBROWSER_MSG_G_H