mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 01:28:47 +08:00
24 lines
287 B
C++
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;
|
|
};
|
|
}
|