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.

57 lines
1.4 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992-1999.
  5. //
  6. // File: ciscan.h
  7. //
  8. // Contents: CI Scandisk, public interfaces
  9. //
  10. // History: 22-Aug-94 DwightKr Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #ifndef __CISCAN_H__
  14. #define __CISCAN_H__
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif
  18. # ifdef __cplusplus
  19. extern "C" {
  20. # endif
  21. enum ECIScanType { eCIDiskRestartScan=0,
  22. eCIDiskForceFullScan,
  23. eCIDiskFullScan,
  24. eCIDiskPartialScan,
  25. eCIDiskClean };
  26. //+-------------------------------------------------------------------------
  27. //
  28. // Struct: CIScanInfo
  29. //
  30. // Synopsis: Used to store and forward information required for a
  31. // scandisk operations. This struct is used by public APIs.
  32. //
  33. // History: 08-Nov-94 DwightKr Created
  34. //
  35. //--------------------------------------------------------------------------
  36. struct CIScanInfo
  37. {
  38. ECIScanType scanType;
  39. unsigned cDocumentsScanned;
  40. };
  41. SCODE OfsContentScanGetInfo( const WCHAR * wcsDrive, CIScanInfo * pScanInfo );
  42. SCODE OfsContentScan( const WCHAR * wcsDrive, BOOL fForceFull );
  43. # ifdef __cplusplus
  44. }
  45. # endif
  46. #endif // of ifndef __CISCAN_H__