You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
242 B
19 lines
242 B
|
|
/* 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
|