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.

28 lines
537 B

  1. #pragma pack(1)
  2. typedef struct
  3. {
  4. ULONG cItems;
  5. ULONG cKeys;
  6. ULONG cPages;
  7. JET_DATESERIAL dtWhenRun;
  8. } SR;
  9. #pragma pack()
  10. ERR ErrSTATComputeIndexStats( PIB *ppib, FCB *pfcbIdx );
  11. ERR ErrSTATSRetrieveTableStats(
  12. PIB *ppib,
  13. DBID dbid,
  14. char *szTable,
  15. long *pcRecord,
  16. long *pcKey,
  17. long *pcPage );
  18. ERR ErrSTATSRetrieveIndexStats(
  19. FUCB *pfucbTable,
  20. char *szIndex,
  21. long *pcItem,
  22. long *pcKey,
  23. long *pcPage );
  24. ERR VTAPI ErrIsamComputeStats( PIB *ppib, FUCB *pfucb );