Added memoryfilesystem and working on c wrapper

This commit is contained in:
2025-01-03 05:50:44 -06:00
parent 8e4ec4ee3e
commit 7e6f0f1fca
17 changed files with 1229 additions and 8 deletions

View File

@@ -95,7 +95,7 @@ namespace Tesses::Framework::Streams {
void Stream::CopyTo(Stream* strm, size_t buffSize)
{
if(strm != nullptr)
strm->CopyTo(*strm, buffSize);
this->CopyTo(*strm, buffSize);
}
void Stream::CopyTo(Stream& strm, size_t buffSize)
{