1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Forty Thieves patience game
4 // Author: Chris Breeze
8 // Copyright: (c) 1993-1998 Chris Breeze
9 // Licence: wxWindows licence
10 //---------------------------------------------------------------------------
11 // Last modified: 22nd July 1998 - ported to wxWindows 2.0
12 /////////////////////////////////////////////////////////////////////////////
16 #include <wx/config.h>
19 #include <wx/fileconf.h>
22 #define wxConfig wxFileConfig
27 ScoreFile(const char* appName
);
30 void GetPlayerList( wxArrayString
&list
);
31 wxString
GetPreviousPlayer() const;
33 void ReadPlayersScore(const char* player
, int& wins
, int& games
, int &score
);
34 void WritePlayersScore(const char* player
, int wins
, int games
, int score
);
37 long CalcCheck(const char* name
, int p1
, int p2
, int p3
);
38 wxString m_configFilename
;