Message.h
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:0k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. #ifndef _MESSAGE_H
  2. #define _MESSAGE_H
  3. struct Message
  4. {
  5. public:
  6. int iType;
  7. int iSubType;
  8. TCHAR strRoom[20];
  9. TCHAR strName[20];
  10. TCHAR strClientName[20];
  11. TCHAR strContent[1024];
  12. };
  13. #endif