mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 20:19:38 +00:00
Lots of stuff
This commit is contained in:
17
PortabilityLayer/MMHandleBlock.cpp
Normal file
17
PortabilityLayer/MMHandleBlock.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user