mirror of
https://github.com/pound-emu/pound.git
synced 2025-06-22 22:48:09 -04:00
22 lines
464 B
C++
22 lines
464 B
C++
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace FileSys {
|
|
|
|
enum class OperationId : s64 {
|
|
FillZero = 0,
|
|
DestroySignature = 1,
|
|
Invalidate = 2,
|
|
QueryRange = 3,
|
|
QueryUnpreparedRange = 4,
|
|
QueryLazyLoadCompletionRate = 5,
|
|
SetLazyLoadPriority = 6,
|
|
|
|
ReadLazyLoadFileForciblyForDebug = 10001,
|
|
};
|
|
|
|
} // namespace FileSys
|