mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 14:07:11 -06:00
4.59 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
3901bf0ab8
commit
173c07e166
36
CPP/7zip/Archive/Udf/UdfHandler.h
Executable file
36
CPP/7zip/Archive/Udf/UdfHandler.h
Executable file
@@ -0,0 +1,36 @@
|
||||
// Udf/Handler.h
|
||||
|
||||
#ifndef __UDF_HANDLER_H
|
||||
#define __UDF_HANDLER_H
|
||||
|
||||
#include "Common/MyCom.h"
|
||||
#include "../IArchive.h"
|
||||
|
||||
#include "UdfIn.h"
|
||||
|
||||
namespace NArchive {
|
||||
namespace NUdf {
|
||||
|
||||
struct CRef2
|
||||
{
|
||||
int Vol;
|
||||
int Fs;
|
||||
int Ref;
|
||||
};
|
||||
|
||||
class CHandler:
|
||||
public IInArchive,
|
||||
public CMyUnknownImp
|
||||
{
|
||||
CMyComPtr<IInStream> _inStream;
|
||||
CInArchive _archive;
|
||||
CRecordVector<CRef2> _refs2;
|
||||
public:
|
||||
MY_UNKNOWN_IMP1(IInArchive)
|
||||
INTERFACE_IInArchive(;)
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user