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.

20 lines
258 B

  1. /* pref.h */
  2. typedef struct
  3. {
  4. INT xWindow;
  5. INT yWindow;
  6. BOOL fMenu;
  7. BOOL fSound;
  8. BOOL fMouse;
  9. BOOL fColor;
  10. INT skill;
  11. INT level;
  12. INT HiScore;
  13. INT HiLevel;
  14. CHAR szName[16];
  15. } PREF;
  16. VOID ReadPreferences(VOID);
  17. VOID WritePreferences(VOID);