Leaked source code of windows server 2003
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

  1. /* UnDo Record */
  2. typedef struct _udr
  3. {
  4. BOOL fAvail;
  5. BOOL fEndDeck;
  6. INT sco;
  7. INT icol1, icol2;
  8. INT irep;
  9. COL *rgpcol[2];
  10. } UDR;
  11. BOOL FInitUndo(UDR *pudr);
  12. VOID FreeUndo(UDR *pudr);
  13. #define icrdUndoMax 52