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

游戏引擎

开发平台:

Visual C++

  1. #ifndef __COMMON
  2. #define __COMMON
  3. #include <ddraw.h>
  4. #include "Socket.h"
  5. #include "wsa_xtra.h"
  6. //define error
  7. #define ERR_NO 0
  8. #define ERR_SYSTEM 1
  9. #define ERR_LINK 2
  10. #define ERR_GOON 3
  11. #define ERR_DONE 4
  12. #define ERR_EXIT 5
  13. #define FONT_WIDTH 4
  14. #define FONT_HEIGHT 12
  15. #define FONT_SIZE 7
  16. #define MAXPLAYERNAME 20
  17. extern char szSendData[];
  18. extern COLORREF colorEnable,colorDisable;
  19. HFONT GetFont(int Height,char *Name,int Weight);
  20. int LinkToWGS();
  21. #endif