mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2025-03-03 06:07:11 +00:00
33 lines
641 B
C++
Executable file
33 lines
641 B
C++
Executable file
#include "data/byte_buffer.hpp"
|
|
|
|
#include "util/error.hpp"
|
|
#include "util/debug.h"
|
|
|
|
namespace tin::data
|
|
{
|
|
ByteBuffer::ByteBuffer(size_t reserveSize)
|
|
{
|
|
m_buffer.resize(reserveSize);
|
|
}
|
|
|
|
size_t ByteBuffer::GetSize()
|
|
{
|
|
return m_buffer.size();
|
|
}
|
|
|
|
u8* ByteBuffer::GetData()
|
|
{
|
|
return m_buffer.data();
|
|
}
|
|
|
|
void ByteBuffer::Resize(size_t size)
|
|
{
|
|
m_buffer.resize(size, 0);
|
|
}
|
|
|
|
void ByteBuffer::DebugPrintContents()
|
|
{
|
|
fprintf(nxlinkout, "Buffer Size: 0x%lx\n", this->GetSize());
|
|
printBytes(nxlinkout, this->GetData(), this->GetSize(), true);
|
|
}
|
|
}
|