12345678910111213141516171819202122232425262728293031 |
- #ifndef __PORTABLESCANNER_MSG_G_H
- #define __PORTABLESCANNER_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace PortableScanner {
- #define eMsg_StatusMsg 0
- #define eMsgSig_StatusMsg -1779659877
- struct StatusMsg
- {
- int status;
- CSimpleStringA description;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & status & description;
- }
- };
- ///////////////////////////
- } // namespace PortableScanner
- #endif // __PORTABLESCANNER_MSG_G_H
|