CMake, Big Cleanup, CI Build and 3rd_Party

This commit is contained in:
Xphalnos 2025-06-17 18:39:26 +02:00
parent ede77f4c3f
commit 548b99e2e3
161 changed files with 681 additions and 663 deletions

22
WIP/fs/fs_operate_range.h Normal file
View file

@ -0,0 +1,22 @@
// 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