SCAN_RESULTS (Windows CE 5.0)

Send Feedback

This structure contains the results from a scan operation.

typedef struct _SCAN_RESULTS {
  DWORD dwLostClusters;  DWORD dwInvalidClusters;  DWORD dwLostChains;  DWORD dwInvalidDirs;  DWORD dwInvalidFiles;  DWORD dwTotalErrors;  DWORD dwPercentFrag;  BOOL fConsistentFats;  BOOL fErrorNotFixed;} SCAN_RESULTS, *PSCAN_RESULTS;

Members

  • dwLostClusters
    Number of lost clusters found.
  • dwInvalidClusters
    Number of invalid cluster values in FAT.
  • dwLostChains
    Number of lost chains found.
  • dwInvalidDirs
    Number of directories with invalid cluster references.
  • dwInvalidFiles
    Number of files with invalid cluster references.
  • dwTotalErrors
    Total number of errors. Sum of 5 fields above.
  • dwPercentFrag
    Percent fragmentation on disk.
  • fConsistentFats
    TRUE if FATs are consistent.
  • fErrorNotFixed
    TRUE if there are still errors on drive after scan.

Requirements

OS Versions: Windows CE .NET 4.2 and later.

Header: Fatutil.h.

See Also

ScanVolumeEx | SCAN_PARAMS

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.