诸暨麻将添加redis
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

21 lignes
678 B

  1. #pragma once
  2. class Commend
  3. {
  4. public:
  5. Commend();
  6. ~Commend();
  7. //锁
  8. //static CCriticalSection m_CriticalSection; //线程锁
  9. //参数转成字符串
  10. static CString ToString(WORD wMainCmdID, WORD wCmdTable, const void* pBuffer);
  11. //名字
  12. static CString ToName(WORD wMainCmdID, WORD wCmdTable, PVOID pGetGameString = NULL);
  13. //名字
  14. static CString ToNameEx(WORD wMainCmdID, WORD wCmdTable, const void* pBuffer, int iLen, void* pGetGameString = NULL);
  15. //打印通讯日志
  16. static void ToShow(VOID* Frame, WORD wMainCmdID, WORD wCmdTable, const void* pBuffer, int iLen, DWORD dTablePrivate = 0, DWORD dUserID = 0, PVOID pGetGameString = NULL,bool bSend = true);
  17. };