123456789101112131415161718192021222324252627282930313233 |
- #ifndef __THERMALPRINT_MSG_G_H
- #define __THERMALPRINT_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace ThermalPrint {
- #define eMsg_PrintResult 0
- #define eMsgSig_PrintResult 692553839
- struct PrintResult
- {
- CSimpleStringW uuid;
- int print_Result;
- CSimpleStringW error_code;
- CSimpleStringW error_msg;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & uuid & print_Result & error_code & error_msg;
- }
- };
- ///////////////////////////
- } // namespace ThermalPrint
- #endif // __THERMALPRINT_MSG_G_H
|