12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef __GPIO_DEF_G_H
- #define __GPIO_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace Gpio {
- //
- // const goes here
- //
- #define GpioService_Method_GetDevInfo 65535
- #define GpioService_Method_Exit 0
- #define GpioService_MethodSignature_GetDevInfo -70806533
- #define GpioService_MethodSignature_Exit -736432874
- #define GpioService_LogCode_GetDevInfo "QLR040220999"
- #define GpioService_LogCode_Exit "QLR040220900"
- struct GpioService_GetDevInfo_Req
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct GpioService_GetDevInfo_Ans
- {
- CSimpleStringA type;
- CSimpleStringA model;
- CSimpleStringA version;
- int state;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & type & model & version & state;
- }
- };
- struct GpioService_Exit_Info
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- ///////////////////////////
- } // namespace Gpio
- #endif // __GPIO_DEF_G_H
|