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:
goeiecool9999 2022-09-07 01:22:35 +02:00 committed by klaas
parent 6c89de506b
commit 535ff8c0d7
5 changed files with 518 additions and 0 deletions

8
src/Common/FileStream.h Normal file
View 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