X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=programs%2Fimagex.c;h=61a93fbef260e509120f702d36b3f70b1472f156;hp=2350f7e8086742c58c95b7a354845c3035cf61ca;hb=3cf06a471de65b5e69b44c41b95b1bbfb49ab55f;hpb=bde99a849d3e7a479cb04a4e16e405b0c2f022dd diff --git a/programs/imagex.c b/programs/imagex.c index 2350f7e8..61a93fbe 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -363,6 +363,12 @@ static int imagex_progress_func(enum wimlib_progress_msg msg, case WIMLIB_PROGRESS_MSG_SCAN_BEGIN: printf("Scanning `%s'...\n", info->scan.source); break; + case WIMLIB_PROGRESS_MSG_SCAN_DENTRY: + if (info->scan.excluded) + printf("Excluding `%s' from capture\n", info->scan.cur_path); + else + printf("Scanning `%s'\n", info->scan.cur_path); + break; /*case WIMLIB_PROGRESS_MSG_SCAN_END:*/ /*break;*/ case WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY: @@ -413,6 +419,9 @@ static int imagex_progress_func(enum wimlib_progress_msg msg, if (info->extract.completed_bytes == info->extract.total_bytes) putchar('\n'); break; + case WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY: + puts(info->extract.cur_path); + break; case WIMLIB_PROGRESS_MSG_JOIN_STREAMS: percent_done = TO_PERCENT(info->join.completed_bytes, info->join.total_bytes);