This is now const

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40318
This commit is contained in:
David Anderson
2007-01-18 20:56:41 +00:00
parent 232e027137
commit c6b77c8cc1
5 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -294,7 +294,7 @@ namespace SourcePawn
* @param num Number of natives in array.
* @param overwrite Toggles overwrite.
*/
virtual int BindNatives(sp_nativeinfo_t *natives, unsigned int num, int overwrite) =0;
virtual int BindNatives(const sp_nativeinfo_t *natives, unsigned int num, int overwrite) =0;
/**
* @brief Binds a single native. Overwrites any existing bind.
@@ -303,7 +303,7 @@ namespace SourcePawn
*
* @param native Pointer to native.
*/
virtual int BindNative(sp_nativeinfo_t *native) =0;
virtual int BindNative(const sp_nativeinfo_t *native) =0;
/**
* @brief Binds a single native to any non-registered native.