Files
FileManager/xpatchlibUtils.cpp
2025-12-15 00:18:06 -08:00

13 lines
282 B
C++

#include "xpatchlibUtils.h"
#include "xpatchlib.h"
// CreateBak callback function
bool UpdateBakProgress(ULONGLONG wb) {
if (CopyProgress::g_copyProgFn) {
if (!CopyProgress::g_copyProgFn(-wb, NULL, NULL, CopyProgress::g_copyProgUser)) {
return false;
}
return true;
}
}