Files
easy7zip/7zip/FileManager/RegistrySystem.h
Igor Pavlov 8c1b5c7b7e 3.13
2016-05-28 00:15:41 +01:00

28 lines
436 B
C++
Executable File

// ZipRegistryMain.h
#pragma once
#ifndef __ZIPREGISTRYMAIN_H
#define __ZIPREGISTRYMAIN_H
#include "ZipSettings.h"
namespace NZipRootRegistry {
struct CArchiverInfo
{
#ifndef NO_REGISTRY
CLSID ClassID;
#endif
CSysString Name;
CSysString Extension;
CSysString AddExtension;
bool UpdateEnabled;
bool KeepName;
};
void ReadArchiverInfoList(CObjectVector<CArchiverInfo> &anInfoList);
}
#endif