Files
Aerofoil/PortabilityLayer/MMHandleBlock.cpp

18 lines
255 B
C++
Raw Permalink Normal View History

#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;
}
}