cmdemote.h
上传用户:garry_shen
上传日期:2015-04-15
资源大小:45647k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #ifndef _COMMAND_EMOTE_H_
  2. #define _COMMAND_EMOTE_H_
  3. #define EMT_HAVE_TARGET 0x1
  4. #define EMT_HAVE_NONAME 0x2
  5. #define EMT_HAVE_SELF   0x4
  6. typedef struct tagEmote
  7. {
  8. int nKind;
  9. CString szEmote;
  10. CString szCEmote;
  11. int nType;
  12. CString szTarget;
  13. CString szMeTo;
  14. CString szOthersTo;
  15. CString szMe;
  16. CString szOthers;
  17. CString szMyself;
  18. CString szOtherself;
  19. tagEmote()
  20. {
  21. nKind = 0;
  22. szEmote = "";
  23. szCEmote = "";
  24. nType = 0;
  25. szTarget = "";
  26. szMeTo = "";
  27. szOthersTo = "";
  28. szMe = "";
  29. szOthers = "";
  30. szMyself = "";
  31. szOtherself = "";
  32. }
  33. }TEmote;
  34. BOOL InitEmote();
  35. void DeleteEmote();
  36. BOOL GetEmote(CString , CActiveObject *, CActiveObject *, CString &, CString &, CString &);
  37. #endif