12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef __WATCHDOG_DEF_G_H
- #define __WATCHDOG_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace WatchDog {
- //
- // const goes here
- //
- #define WatchDogService_Method_StartWatch 0
- #define WatchDogService_Method_Refresh 1
- #define WatchDogService_Method_StopWatch 2
- #define WatchDogService_MethodSignature_StartWatch -348447122
- #define WatchDogService_MethodSignature_Refresh 839939657
- #define WatchDogService_MethodSignature_StopWatch -1935777995
- struct WatchDogService_StartWatch_Req
- {
- int Delay;
- int Timeout;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & Delay & Timeout;
- }
- };
- struct WatchDogService_StartWatch_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct WatchDogService_Refresh_Req
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct WatchDogService_Refresh_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct WatchDogService_StopWatch_Req
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct WatchDogService_StopWatch_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- ///////////////////////////
- } // namespace WatchDog
- #endif // __WATCHDOG_DEF_G_H
|