protocol.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /********************************************************************
  2. created: 2003/06/23
  3. file base: protocol
  4. file ext: h
  5. author: liupeng
  6. purpose:
  7. *********************************************************************/
  8. #ifndef __INCLUDE_PROTOCOL_H__
  9. #define __INCLUDE_PROTOCOL_H__
  10. enum enumProtocol
  11. {
  12. enumBegin = 0,
  13. enumWork,
  14. enumEnd
  15. };
  16. /*
  17.  * enumWork
  18.  */
  19. struct tagHead
  20. {
  21. BYTE cProtocol;
  22. };
  23. struct tagWork : tagHead
  24. {
  25. UINT nAction;
  26. };
  27. #endif // __INCLUDE_PROTOCOL_H__