1234567891011121314151617181920212223242526272829303132 |
- #ifndef __DEVICECONTROL_MSG_G_H
- #define __DEVICECONTROL_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace DeviceControl {
- #define eMsg_AdapterTestResult 0
- #define eMsgSig_AdapterTestResult -208286610
- struct AdapterTestResult
- {
- int result;
- CSimpleStringA adapterInfo;
- CSimpleStringA errMsg;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & result & adapterInfo & errMsg;
- }
- };
- ///////////////////////////
- } // namespace DeviceControl
- #endif // __DEVICECONTROL_MSG_G_H
|