LeviLamina
Loading...
Searching...
No Matches
UnzipResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core::ZipUtils {
6
7enum class UnzipResult : int {
8 Ok = 0,
9 UnzipError = 1,
10 ParamError = 2,
11 BadZipFile = 3,
12 InternalError = 4,
13 CRCError = 5,
14 DirectoryDepthError = 6,
15};
16
17}