Files
Aerofoil/PortabilityLayer/MMHandleBlock.cpp
2019-11-11 00:11:59 -05:00

18 lines
272 B
C++

#include "MMHandleBlock.h"
namespace PortabilityLayer
{
MMHandleBlock::MMHandleBlock(void *contents, size_t size)
: m_contents(contents)
, m_rmSelfRef(nullptr)
, m_size(size)
{
}
void **MMHandleBlock::AsHandle()
{
return &m_contents;
}
}