mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
10 lines
173 B
C++
10 lines
173 B
C++
#include "PLHandle.h"
|
|
|
|
#include "MemoryManager.h"
|
|
|
|
void THandleBase::Dispose() const
|
|
{
|
|
if (m_hdl)
|
|
PortabilityLayer::MemoryManager::GetInstance()->ReleaseHandle(m_hdl);
|
|
}
|