windows-nt/Source/XPSP1/NT/shell/osshell/games/sol/undo.h

20 lines
223 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/* UnDo Record */
typedef struct _udr
{
BOOL fAvail;
BOOL fEndDeck;
INT sco;
INT icol1, icol2;
INT irep;
COL *rgpcol[2];
} UDR;
BOOL FInitUndo(UDR *pudr);
VOID FreeUndo(UDR *pudr);
#define icrdUndoMax 52