Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
512 B

  1. /**********/
  2. /* pref.h */
  3. /**********/
  4. /*** Game Types ***/
  5. #define iGame3x3 0
  6. #define iGame3x3x3 1
  7. #define iGame4x4x4 2
  8. #define skillBegin 0
  9. #define skillInter 49
  10. #define skillExpert 99
  11. #define iStartRnd 0
  12. #define iStartRed iComputer
  13. #define iStartBlue iHuman
  14. #define intlMax 99
  15. typedef struct
  16. {
  17. INT xWindow;
  18. INT yWindow;
  19. INT fSound;
  20. BOOL fMenu;
  21. INT iGameType;
  22. BOOL fComputer;
  23. BOOL fColor;
  24. INT skill;
  25. INT iStart;
  26. } PREF;
  27. VOID ReadPreferences(VOID);
  28. VOID WritePreferences(VOID);