1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #ifndef __SYSTEMCUSTOMIZATION_DEF_G_H
- #define __SYSTEMCUSTOMIZATION_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace systemcustomization {
- //
- // const goes here
- //
- #define systemcustomizationInterface_Method_UpdateMD5List 0
- #define systemcustomizationInterface_Method_VerifyCodeSign 1
- #define systemcustomizationInterface_Method_InstallPatch 2
- #define systemcustomizationInterface_MethodSignature_UpdateMD5List -1570627197
- #define systemcustomizationInterface_MethodSignature_VerifyCodeSign -808272530
- #define systemcustomizationInterface_MethodSignature_InstallPatch 744585476
- struct systemcustomizationInterface_UpdateMD5List_Req
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct systemcustomizationInterface_UpdateMD5List_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct systemcustomizationInterface_VerifyCodeSign_Req
- {
- CSimpleStringA FilePath;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & FilePath;
- }
- };
- struct systemcustomizationInterface_VerifyCodeSign_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct systemcustomizationInterface_InstallPatch_Req
- {
- CSimpleStringA FilePath;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & FilePath;
- }
- };
- struct systemcustomizationInterface_InstallPatch_Ans
- {
- double Errcode;
- CSimpleStringA ErrMsg;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & Errcode & ErrMsg;
- }
- };
- ///////////////////////////
- } // namespace systemcustomization
- #endif // __SYSTEMCUSTOMIZATION_DEF_G_H
|