mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 08:30:05 +00:00
18 lines
291 B
C
18 lines
291 B
C
|
// Copyright 2018 yuzu emulator team
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "common/common_types.h"
|
||
|
|
||
|
namespace FileSys {
|
||
|
|
||
|
enum class Mode : u32 {
|
||
|
Read = 1,
|
||
|
Write = 2,
|
||
|
Append = 4,
|
||
|
};
|
||
|
|
||
|
} // namespace FileSys
|