12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #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
- 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
|