You've already forked FileManager
mirror of
https://github.com/Team-Resurgent/FileManager.git
synced 2026-04-30 10:38:50 -07:00
13 lines
282 B
C++
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;
|
|
}
|
|
} |