123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef __IEBROWSER_MSG_G_H
- #define __IEBROWSER_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "spHelper.h"
- namespace IEBrowser {
- #define eMsg_WebBroadcast 0
- #define eMsg_CustomerCmd 1
- #define eMsgSig_WebBroadcast -1193218700
- #define eMsgSig_CustomerCmd -1267458849
- struct WebBroadcast
- {
- CSimpleStringA broadcastJson;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & broadcastJson;
- }
- };
- ///////////////////////////
- struct CustomerCmd
- {
- CSimpleStringA cmdStr;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & cmdStr;
- }
- };
- ///////////////////////////
- } // namespace IEBrowser
- #endif // __IEBROWSER_MSG_G_H
|