systemcustomization_def_g.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #ifndef __SYSTEMCUSTOMIZATION_DEF_G_H
  2. #define __SYSTEMCUSTOMIZATION_DEF_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace systemcustomization {
  7. //
  8. // const goes here
  9. //
  10. #define systemcustomizationInterface_Method_UpdateMD5List 0
  11. #define systemcustomizationInterface_Method_VerifyCodeSign 1
  12. #define systemcustomizationInterface_Method_InstallPatch 2
  13. #define systemcustomizationInterface_MethodSignature_UpdateMD5List -1570627197
  14. #define systemcustomizationInterface_MethodSignature_VerifyCodeSign -808272530
  15. #define systemcustomizationInterface_MethodSignature_InstallPatch 744585476
  16. struct systemcustomizationInterface_UpdateMD5List_Req
  17. {
  18. void Serialize(SpBuffer &Buf)
  19. {
  20. }
  21. };
  22. struct systemcustomizationInterface_UpdateMD5List_Ans
  23. {
  24. void Serialize(SpBuffer &Buf)
  25. {
  26. }
  27. };
  28. struct systemcustomizationInterface_VerifyCodeSign_Req
  29. {
  30. CSimpleStringA FilePath;
  31. void Serialize(SpBuffer &Buf)
  32. {
  33. auto & buf = Buf & FilePath;
  34. }
  35. };
  36. struct systemcustomizationInterface_VerifyCodeSign_Ans
  37. {
  38. void Serialize(SpBuffer &Buf)
  39. {
  40. }
  41. };
  42. struct systemcustomizationInterface_InstallPatch_Req
  43. {
  44. CSimpleStringA FilePath;
  45. void Serialize(SpBuffer &Buf)
  46. {
  47. auto & buf = Buf & FilePath;
  48. }
  49. };
  50. struct systemcustomizationInterface_InstallPatch_Ans
  51. {
  52. double Errcode;
  53. CSimpleStringA ErrMsg;
  54. void Serialize(SpBuffer &Buf)
  55. {
  56. auto & buf = Buf & Errcode & ErrMsg;
  57. }
  58. };
  59. ///////////////////////////
  60. } // namespace systemcustomization
  61. #endif // __SYSTEMCUSTOMIZATION_DEF_G_H