summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/fs_operate_range.h
blob: 7509999071cbbce665c948ca7954bc2ae80ccb73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

namespace FileSys {

enum class OperationId : s64 {
    FillZero = 0,
    DestroySignature = 1,
    Invalidate = 2,
    QueryRange = 3,
    QueryUnpreparedRange = 4,
    QueryLazyLoadCompletionRate = 5,
    SetLazyLoadPriority = 6,

    ReadLazyLoadFileForciblyForDebug = 10001,
};

} // namespace FileSys