DeviceControl_msg_g.h 531 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef __DEVICECONTROL_MSG_G_H
  2. #define __DEVICECONTROL_MSG_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace DeviceControl {
  7. #define eMsg_AdapterTestResult 0
  8. #define eMsgSig_AdapterTestResult -208286610
  9. struct AdapterTestResult
  10. {
  11. int result;
  12. CSimpleStringA adapterInfo;
  13. CSimpleStringA errMsg;
  14. void Serialize(SpBuffer &Buf)
  15. {
  16. auto & buf = Buf & result & adapterInfo & errMsg;
  17. }
  18. };
  19. ///////////////////////////
  20. } // namespace DeviceControl
  21. #endif // __DEVICECONTROL_MSG_G_H