mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 21:09:56 -06:00
29 lines
411 B
C
Executable File
29 lines
411 B
C
Executable File
// CompressionMethodUtils.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __COMPRESSIONMETHODUTILS_H
|
|
#define __COMPRESSIONMETHODUTILS_H
|
|
|
|
struct CProperty
|
|
{
|
|
UString Name;
|
|
UString Value;
|
|
};
|
|
|
|
struct CCompressionMethodMode
|
|
{
|
|
#ifndef EXCLUDE_COM
|
|
UString FilePath;
|
|
CLSID ClassID1;
|
|
#else
|
|
UString Name;
|
|
#endif
|
|
CObjectVector<CProperty> Properties;
|
|
bool PasswordIsDefined;
|
|
bool AskPassword;
|
|
UString Password;
|
|
};
|
|
|
|
#endif
|