Source code of Windows XP (NT5)
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.

50 lines
1011 B

  1. /*++
  2. Copyright (c) 1990-2000 Microsoft Corporation
  3. Module Name:
  4. convertfat.hxx
  5. Abstract:
  6. This module contains the prototype of the ConvertFAT function
  7. Author:
  8. Ramon J. San Andres (ramonsa) 23-Sep-1991
  9. --*/
  10. DECLARE_CLASS( LOG_IO_DP_DRIVE );
  11. DECLARE_CLASS( WSTRING );
  12. DECLARE_CLASS( MESSAGE );
  13. LONG
  14. FAR APIENTRY
  15. IsConversionAvailable(
  16. IN PCWSTRING TargetFileSystem
  17. );
  18. BOOLEAN
  19. FAR APIENTRY
  20. ConvertFATVolume(
  21. IN OUT PLOG_IO_DP_DRIVE Drive,
  22. IN PCWSTRING TargetFileSystem,
  23. IN PCWSTRING CvtZoneFileName,
  24. IN OUT PMESSAGE Message,
  25. IN ULONG Flags,
  26. OUT PCONVERT_STATUS Status
  27. );
  28. extern "C" BOOLEAN
  29. FAR APIENTRY
  30. ConvertFAT(
  31. IN PCWSTRING NtDriveName,
  32. IN PCWSTRING TargetFileSystem,
  33. IN PCWSTRING CvtZoneFileName,
  34. IN OUT PMESSAGE Message,
  35. IN ULONG Flags,
  36. OUT PCONVERT_STATUS Status
  37. );