Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 160 of file vfatxlib.c.
Referenced by Fatx16WriteFAT(), Fatx32WriteFAT(), and FatxWriteBootSector().
{ ULONG NewPercent; Context->CurrentSectorCount += (ULONGLONG)Increment; NewPercent = (Context->CurrentSectorCount * 100ULL) / Context->TotalSectorCount; if (NewPercent > Context->Percent) { Context->Percent = NewPercent; if (Context->Callback != NULL) { Context->Callback(PROGRESS, 0, &Context->Percent); } } }