Link CMemoryInStream.cpp

This commit is contained in:
2022-07-19 23:19:07 -07:00
parent 6acf3a1278
commit 437b1dd3a6
9 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
#include "Kyoto/Streams/CMemoryInStream.hpp"
u32 CMemoryInStream::Read(void* dest, u32 len) {
return 0;
}
CMemoryInStream::CMemoryInStream(const void* ptr, unsigned long len)
: CInputStream(ptr, len, false) {}
CMemoryInStream::CMemoryInStream(const void* ptr, unsigned long len, EOwnerShip ownership)
: CInputStream(ptr, len, ownership == kOS_NotOwned) {}