Files
Aerofoil/PortabilityLayer/MMHandleBlock.cpp
Diomendius 1b18a87495 Normalize line endings
This commit contains only the result of `git add --renormalize .`

`git show --ignore-space-change` can verify that this commit only
changes whitespace.
2024-07-31 20:21:47 +12:00

18 lines
255 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;
}
}