诸暨麻将添加redis
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

42 righe
780 B

  1. #pragma once
  2. //内核命令码
  3. #define MDM_KN_COMMAND 0 //内核命令
  4. #define SUB_KN_DETECT_SOCKET 1 //检测命令
  5. #define SUB_KN_SHUT_DOWN_SOCKET 2 //中断网络
  6. //检测结构信息
  7. struct CMD_KN_DetectSocket
  8. {
  9. DWORD dwSendTickCount; //发送时间
  10. DWORD dwRecvTickCount; //接收时间
  11. };
  12. class CMyEncrypt
  13. {
  14. public:
  15. CMyEncrypt()
  16. {
  17. }
  18. void Reset()
  19. {
  20. }
  21. unsigned int Iteration(unsigned int uKey)
  22. {
  23. }
  24. unsigned short EncryptBuffer(unsigned char szDataBuffer[], unsigned short usDataSize)
  25. {
  26. return usDataSize;
  27. }
  28. unsigned short DecryptBuffer(unsigned char szDataBuffer[], unsigned short usDataSize)
  29. {
  30. return usDataSize;
  31. }
  32. };