- Renamed UpdateProgress to VfatxUpdateProgress.

svn path=/trunk/; revision=13287
This commit is contained in:
Hartmut Birr 2005-01-25 22:36:28 +00:00
parent 85d156faef
commit df79339515
2 changed files with 7 additions and 7 deletions

View file

@ -90,7 +90,7 @@ FatxWriteBootSector (IN HANDLE FileHandle,
return Status;
}
UpdateProgress (Context, 1);
VfatxUpdateProgress (Context, 1);
/* Free the new boot sector */
RtlFreeHeap(RtlGetProcessHeap(), 0, NewBootSector);
@ -148,7 +148,7 @@ Fatx16WriteFAT (IN HANDLE FileHandle,
return(Status);
}
UpdateProgress (Context, 1);
VfatxUpdateProgress (Context, 1);
/* Zero the begin of the buffer */
memset(Buffer, 0, 4);
@ -180,7 +180,7 @@ Fatx16WriteFAT (IN HANDLE FileHandle,
return(Status);
}
UpdateProgress (Context, Sectors);
VfatxUpdateProgress (Context, Sectors);
}
/* Free the buffer */
@ -241,7 +241,7 @@ Fatx32WriteFAT (IN HANDLE FileHandle,
return(Status);
}
UpdateProgress (Context, 1);
VfatxUpdateProgress (Context, 1);
/* Zero the begin of the buffer */
memset(Buffer, 0, 8);
@ -274,7 +274,7 @@ Fatx32WriteFAT (IN HANDLE FileHandle,
return(Status);
}
UpdateProgress (Context, Sectors);
VfatxUpdateProgress (Context, Sectors);
}
/* Free the buffer */

View file

@ -39,7 +39,7 @@ FatxFormat (HANDLE FileHandle,
PFORMAT_CONTEXT Context);
VOID
UpdateProgress (PFORMAT_CONTEXT Context,
ULONG Increment);
VfatxUpdateProgress (PFORMAT_CONTEXT Context,
ULONG Increment);
/* EOF */