LeviLamina
Loading...
Searching...
No Matches
FileArchiverOutcome.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class FileArchiverOutcome : int {
6 Success = 0,
7 FailureUnknown = 1,
8 FailureNoFile = 2,
9 FailureZipError = 3,
10 FailurePremiumContent = 4,
11 FailureEditionMismatch = 5,
12 FailureEditorMismatch = 6,
13 FailureZipDepthError = 7,
14};