mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 02:07:07 -06:00
28 lines
436 B
C++
Executable File
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 |