1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Forty Thieves patience game
4 // Author: Chris Breeze
7 // Copyright: (c) 1993-1998 Chris Breeze
8 // Licence: wxWindows licence
9 //---------------------------------------------------------------------------
10 // Last modified: 22nd July 1998 - ported to wxWidgets 2.0
11 /////////////////////////////////////////////////////////////////////////////
15 #include <wx/config.h>
19 ScoreFile(const wxString
& appName
);
22 void GetPlayerList( wxArrayString
&list
);
23 wxString
GetPreviousPlayer() const;
25 void ReadPlayersScore(const wxString
& player
, int& wins
, int& games
, int &score
);
26 void WritePlayersScore(const wxString
& player
, int wins
, int games
, int score
);
29 long CalcCheck(const wxString
& name
, int p1
, int p2
, int p3
);
30 wxString m_configFilename
;