mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Renamed UpdateProgress to VfatxUpdateProgress.
svn path=/trunk/; revision=13287
This commit is contained in:
parent
85d156faef
commit
df79339515
2 changed files with 7 additions and 7 deletions
|
@ -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 */
|
||||
|
|
|
@ -39,7 +39,7 @@ FatxFormat (HANDLE FileHandle,
|
|||
PFORMAT_CONTEXT Context);
|
||||
|
||||
VOID
|
||||
UpdateProgress (PFORMAT_CONTEXT Context,
|
||||
VfatxUpdateProgress (PFORMAT_CONTEXT Context,
|
||||
ULONG Increment);
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue