123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef __MOBILEDIAL_MSG_G_H
- #define __MOBILEDIAL_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace MobileDial {
- #define eMsg_BatteryVar 0
- #define eMsg_NetStatusVar 1
- #define eMsgSig_BatteryVar 274349406
- #define eMsgSig_NetStatusVar 361052022
- struct BatteryVar
- {
- int battery;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & battery;
- }
- };
- ///////////////////////////
- struct NetStatusVar
- {
- int netstatus;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & netstatus;
- }
- };
- ///////////////////////////
- } // namespace MobileDial
- #endif // __MOBILEDIAL_MSG_G_H
|