home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 5.ddi / CHECKERS.ZIP / CHECKERS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  603 b   |  28 lines

  1. // ObjectWindows - (C) Copyright 1992 by Borland International
  2.  
  3. #ifndef _CHECKERS_H
  4. #define _CHECKERS_H
  5.  
  6. #include <stdio.h>
  7. #include <string.h>
  8. #include <stdlib.h>
  9. #include <time.h>
  10.  
  11. #define CM_UNDO         24341
  12. #define CM_SEARCHDEPTH  24342
  13. #define CM_AUTO         24343
  14. #define CM_ITERATE      24344
  15. #define CM_KILLER       24345
  16. #define CM_ABOUT        24346
  17. #define CM_REDO         24347
  18. #define CM_MOVE         24348
  19. #define CM_STOP         24349
  20. #define CM_LOG          24350
  21. #define IDM_EXIT        24351
  22.  
  23. enum SIDE {Black, Red, Unknown };
  24.  
  25.  
  26. #endif  // _CHECKERS_H
  27. 
  28.