ThermalPrint_msg_g.h 552 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef __THERMALPRINT_MSG_G_H
  2. #define __THERMALPRINT_MSG_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace ThermalPrint {
  7. #define eMsg_PrintResult 0
  8. #define eMsgSig_PrintResult 692553839
  9. struct PrintResult
  10. {
  11. CSimpleStringW uuid;
  12. int print_Result;
  13. CSimpleStringW error_code;
  14. CSimpleStringW error_msg;
  15. void Serialize(SpBuffer &Buf)
  16. {
  17. auto & buf = Buf & uuid & print_Result & error_code & error_msg;
  18. }
  19. };
  20. ///////////////////////////
  21. } // namespace ThermalPrint
  22. #endif // __THERMALPRINT_MSG_G_H