mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-27 23:37:04 -05:00
12 lines
109 B
Plaintext
12 lines
109 B
Plaintext
namespace std::file {
|
|
|
|
using Handle = s32;
|
|
|
|
enum Mode : u8 {
|
|
Read = 1,
|
|
Write = 2,
|
|
Create = 3
|
|
};
|
|
|
|
}
|