Files
Aerofoil/PortabilityLayer/PLHandle.cpp

12 lines
187 B
C++
Raw Normal View History

2019-12-29 23:14:37 -05:00
#include "PLHandle.h"
#include "MemoryManager.h"
void THandleBase::Dispose()
{
if (m_hdl)
PortabilityLayer::MemoryManager::GetInstance()->ReleaseHandle(m_hdl);
m_hdl = nullptr;
2019-12-29 23:14:37 -05:00
}