GAMEDEFS.H
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. /*
  2.   file: GAMEDEFS.H
  3.   purpose:
  4.     basic defines and other useful stuff
  5. */
  6. #ifndef _GAMEDEFS_H_
  7. #define _GAMEDEFS_H_
  8. /* BYTE & WORD already defined in xlib.h */
  9. typedef int             BOOL;
  10. typedef unsigned int    DWORD;
  11. #define FARPTR(x)       (MK_FP(FP_SEG(x),FP_OFF(x)))
  12. #define FALSE           0
  13. #define TRUE            (!FALSE)
  14. #define PIC 0x20
  15. #define NONSPECIFIC_EOI 0x20
  16. #define UP              0
  17. #define RIGHT           1
  18. #define DOWN            2
  19. #define LEFT            3
  20. #define CENTER          4
  21. #define BUTTON_1        5
  22. #define BUTTON_2        6
  23. #define NONE            7
  24. #define QUIT            8
  25. #endif