Remove "MemoryManager" and very old code

This commit is contained in:
SirLynix
2022-09-24 14:25:52 +02:00
parent 6bf4ccaae1
commit 9cd7976a91
70 changed files with 21 additions and 1221 deletions

View File

@@ -41,18 +41,10 @@ namespace Nz
/*!
* \brief Gets the symbol for the name
* \return Function which is the symbol of the function name
*
* \remark Produces a NazaraError if library is not loaded with NAZARA_CORE_SAFE defined
*/
DynLibFunc DynLib::GetSymbol(const char* symbol) const
{
#if NAZARA_CORE_SAFE
if (!IsLoaded())
{
NazaraError("Library not opened");
return nullptr;
}
#endif
NazaraAssert(IsLoaded(), "library was not opened");
return m_impl->GetSymbol(symbol, &m_lastError);
}