Files

13 lines
282 B
C++
Raw Permalink Normal View History

2025-12-15 00:18:06 -08:00
#include "xpatchlibUtils.h"
2025-12-06 05:18:04 -08:00
#include "xpatchlib.h"
2025-12-05 22:01:19 -08:00
// CreateBak callback function
2025-12-04 18:49:17 -08:00
bool UpdateBakProgress(ULONGLONG wb) {
if (CopyProgress::g_copyProgFn) {
if (!CopyProgress::g_copyProgFn(-wb, NULL, NULL, CopyProgress::g_copyProgUser)) {
2025-12-04 18:49:17 -08:00
return false;
}
2025-12-04 18:49:17 -08:00
return true;
}
}