CardIssuerStore_msg_g.h 638 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #ifndef __CARDISSUERSTORE_MSG_G_H
  2. #define __CARDISSUERSTORE_MSG_G_H
  3. #pragma once
  4. // This code is generated by spgen tool!
  5. #include "SpHelper.h"
  6. namespace CardIssuerStore {
  7. #define eMsg_FetchCard 0
  8. #define eMsg_SCIConnect 1
  9. #define eMsgSig_FetchCard 1110804794
  10. #define eMsgSig_SCIConnect 721962700
  11. struct FetchCard
  12. {
  13. int status;
  14. void Serialize(SpBuffer &Buf)
  15. {
  16. auto & buf = Buf & status;
  17. }
  18. };
  19. ///////////////////////////
  20. struct SCIConnect
  21. {
  22. int status;
  23. void Serialize(SpBuffer &Buf)
  24. {
  25. auto & buf = Buf & status;
  26. }
  27. };
  28. ///////////////////////////
  29. } // namespace CardIssuerStore
  30. #endif // __CARDISSUERSTORE_MSG_G_H