Files
core/Common/cppcf/compoundfile.h
2022-05-31 19:49:35 +03:00

24 lines
287 B
C++

#pragma once
namespace CFCPP
{
enum CFSConfiguration
{
Default = 1,
SectorRecycle = 2,
EraseFreeSectors = 4,
NoValidationException = 8,
LeaveOpen = 16,
};
class CompoundFile
{
public:
CompoundFile();
public:
CFSConfiguration configuration = Default;
};
}