Click here to Skip to main content
15,896,606 members
Articles / Desktop Programming / Win32

High Scores in Solitaire: A More Advanced Approach

Rate me:
Please Sign up or sign in to vote.
4.88/5 (29 votes)
28 Sep 2008Ms-PL13 min read 55.1K   544   56  
This article explains how to make a plug-in for Solitaire that displays a high score table. By way of Codecave, Solitaire will automatically execute a DLL for this plug-in -- thus no user intervention required!
void SaveHighScore(BOOL);
void AddHighScoreMenu(void);
LRESULT CALLBACK SolitaireNewProc(HWND, UINT, WPARAM, LPARAM);
BOOL CALLBACK HighScoreProc(HWND, UINT, WPARAM, LPARAM);
BOOL CALLBACK NameProc(HWND, UINT, WPARAM, LPARAM);

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions