home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / MSJV5-1.ZIP / CHECKERS.ARC / CHECKERS.H < prev    next >
Text File  |  1989-10-02  |  915b  |  35 lines

  1. /*--------------------------------------
  2.    CHECKERS.H header file, version 0.10
  3.   --------------------------------------*/
  4.  
  5. #define BLACK                       0
  6. #define WHITE                       1
  7. #define NORM                        0
  8. #define KING                        1
  9.  
  10. typedef struct
  11.      {
  12.      ULONG ulBlack ;
  13.      ULONG ulWhite ;
  14.      ULONG ulKing ;
  15.      }
  16.      BOARD ;
  17.  
  18. #define ID_RESOURCE                 1
  19.  
  20. #define IDM_BOTTOM                  1
  21. #define IDM_ABOUT                   2
  22.  
  23. #define IDM_COLOR_BACKGROUND       11
  24. #define IDM_COLOR_BLACK_SQUARE     12
  25. #define IDM_COLOR_WHITE_SQUARE     13
  26. #define IDM_COLOR_BLACK_PIECE      14
  27. #define IDM_COLOR_WHITE_PIECE      15
  28. #define IDM_COLOR_STANDARD         16
  29.  
  30. #define IDD_ABOUT_DLG               1
  31. #define IDD_COLOR_DLG               2
  32.  
  33. #define IDD_HEADING                10
  34. #define IDD_COLOR                  20
  35.