mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-02-01 04:24:15 -06:00
4.20
This commit is contained in:
committed by
Kornel Lesiński
parent
8c1b5c7b7e
commit
3c510ba80b
@@ -1,6 +1,6 @@
|
||||
// Client7z.cpp : Defines the entry point for the console application.
|
||||
// Client7z.cpp
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "StdAfx.h"
|
||||
|
||||
#include <initguid.h>
|
||||
|
||||
@@ -59,9 +59,9 @@ int main(int argc, char* argv[])
|
||||
}
|
||||
if (archive->Open(file, 0, 0) != S_OK)
|
||||
return 0;
|
||||
UINT32 numItems = 0;
|
||||
UInt32 numItems = 0;
|
||||
archive->GetNumberOfItems(&numItems);
|
||||
for (UINT32 i = 0; i < numItems; i++)
|
||||
for (UInt32 i = 0; i < numItems; i++)
|
||||
{
|
||||
NWindows::NCOM::CPropVariant propVariant;
|
||||
archive->GetProperty(i, kpidPath, &propVariant);
|
||||
|
||||
Reference in New Issue
Block a user