mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-07 23:41:18 +12:00
FileStream: separate into files, rename file to reflect class name, possibly fix windows build (if cmake changes are also correct)
This commit is contained in:
parent
6c89de506b
commit
535ff8c0d7
5 changed files with 518 additions and 0 deletions
8
src/Common/FileStream.h
Normal file
8
src/Common/FileStream.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
#pragma once
|
||||
#include "Common/precompiled.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#include "Common/FileStream_win32.h"
|
||||
#else
|
||||
#include "Common/unix/FileStream_unix.h"
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue