You've already forked FileManager
mirror of
https://github.com/Team-Resurgent/FileManager.git
synced 2026-04-30 10:38:50 -07:00
15 lines
452 B
C++
15 lines
452 B
C++
#include "xpatchlibUtil.h"
|
|
#include "xpatchlib.h"
|
|
|
|
// ------------------------------------------------------------------
|
|
// CreateBak function with added prog (src-dev)
|
|
// ------------------------------------------------------------------
|
|
bool UpdateBakProgress(ULONGLONG wb) {
|
|
if (CopyProgress::g_copyProgFn) {
|
|
if (!CopyProgress::g_copyProgFn(-wb, NULL, NULL, CopyProgress::g_copyProgUser)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
} |