core will now ignore missing natives starting with '@'

the compiler will now resolve aliased natives to single references and export '@' natives for each redundant entry

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40804
This commit is contained in:
David Anderson
2007-05-15 04:59:24 +00:00
parent 82e07a9bf0
commit c9bc46e770
3 changed files with 25 additions and 14 deletions
+2 -1
View File
@@ -1037,7 +1037,8 @@ bool CPluginManager::RunSecondPass(CPlugin *pPlugin, char *error, size_t maxleng
{
break;
}
if (native->status == SP_NATIVE_UNBOUND)
if (native->status == SP_NATIVE_UNBOUND
&& native->name[0] != '@')
{
if (error)
{