mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-03 00:38:58 +00:00
20 lines
442 B
C
20 lines
442 B
C
// Copyright 2017 Citra Emulator Project / 2019 threeSD Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
/// Result code for operations
|
|
enum class ResultStatus {
|
|
Success,
|
|
Error,
|
|
// Citra loader errors
|
|
ErrorInvalidFormat,
|
|
ErrorNotImplemented,
|
|
ErrorNotLoaded,
|
|
ErrorNotUsed,
|
|
ErrorAlreadyLoaded,
|
|
ErrorMemoryAllocationFailed,
|
|
ErrorEncrypted,
|
|
};
|