123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef __SCREENSHOT_DEF_G_H
- #define __SCREENSHOT_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace ScreenShot {
- //
- // const goes here
- //
- #define ScreenShotService_Method_StartScreenShot 0
- #define ScreenShotService_MethodSignature_StartScreenShot -2024189950
- #define ScreenShotService_LogCode_StartScreenShot "QLR040230300"
- struct ScreenShotService_StartScreenShot_Req
- {
- int Left;
- int Top;
- int Width;
- int Height;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & Left & Top & Width & Height;
- }
- };
- struct ScreenShotService_StartScreenShot_Ans
- {
- CBlob Image;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & Image;
- }
- };
- ///////////////////////////
- } // namespace ScreenShot
- #endif // __SCREENSHOT_DEF_G_H
|