mirrored earlier core native binding optimization to extensions as well. clarified note about pointer lifetime in AddNatives(), as it will be gaining a second version soon

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401397
This commit is contained in:
David Anderson
2007-08-29 05:44:29 +00:00
parent 77cc895151
commit e5d81cf621
3 changed files with 99 additions and 37 deletions
+10 -4
View File
@@ -118,12 +118,18 @@ namespace SourceMod
SMInterface **pIface) =0;
/**
* @brief Adds a list of natives to the global native pool, to be bound on plugin load.
* NOTE: Adding natives currently does not bind them to any loaded plugins.
* You must manually bind late natives.
* @brief Adds a list of natives to the global native pool, to be
* bound on plugin load.
*
* Adding natives does not bind them to any loaded plugins; the
* plugins must be reloaded for new natives to take effect.
*
* @param myself Identity token of parent object.
* @param natives Array of natives to add. The last entry must have NULL members.
* @param natives Array of natives to add. The last entry in
* the array must be filled with NULLs to
* terminate the array. The array must be static
* as Core will cache the pointer for the
* lifetime of the extension.
*/
virtual void AddNatives(IExtension *myself, const sp_nativeinfo_t *natives) =0;