Core: Merge InputStream and OutputStream to Stream

Remove serialization support from Stream


Former-commit-id: 7a761e4fcd07cab561f13e4709c4492ed18da88a
This commit is contained in:
Lynix
2015-11-20 13:52:49 +01:00
parent a47e5633d4
commit ed961f5ba8
66 changed files with 372 additions and 565 deletions

View File

@@ -62,7 +62,7 @@ namespace Nz
struct StreamData
{
InputStream* stream;
Stream* stream;
char buffer[NAZARA_CORE_FILE_BUFFERSIZE];
};
@@ -422,7 +422,7 @@ namespace Nz
return ExecuteFromStream(stream);
}
bool LuaInstance::ExecuteFromStream(InputStream& stream)
bool LuaInstance::ExecuteFromStream(Stream& stream)
{
StreamData data;
data.stream = &stream;