/* $Id: hiscore.h,v 1.1 1996/05/04 19:08:18 yoneyama Exp yoneyama $ */ /************************************************************************ * SameGame for X Window (sxsame) * * Copyleft (c) 1994-1996 Software Research Academy * ************************************************************************/ struct Hiscore { struct { int score; char name[20]; } entry[10]; }; int EntryHiscore( #if NeedFunctionPrototypes int , int, int #endif ); int GetHiscore( #if NeedFunctionPrototypes struct Hiscore *, int #endif );