mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-13 02:08:31 +12:00
Separate filestream.h into OS specific implementation files (#190)
This commit is contained in:
parent
f8b5024c09
commit
e20bfd00ec
37 changed files with 550 additions and 471 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/windows/FileStream_win32.h"
|
||||
#else
|
||||
#include "Common/unix/FileStream_unix.h"
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue