Added any tag to ADT array functions to fix potential tag mismatches

--HG--
branch : sourcemod-1.0.x
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/branches/sourcemod-1.0.x%402093
This commit is contained in:
Scott Ehlert 2008-04-24 10:25:27 +00:00
parent 485e56906a
commit 7d524e4179
3 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
/** /**
* vim: set ts=4 : * vim: set ts=4 :
* ============================================================================= * =============================================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2008 AlliedModders LLC. All rights reserved.
* ============================================================================= * =============================================================================
* *
* This file is part of the SourceMod/SourcePawn SDK. * This file is part of the SourceMod/SourcePawn SDK.

View File

@ -1,7 +1,7 @@
/** /**
* vim: set ts=4 : * vim: set ts=4 :
* ============================================================================= * =============================================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2008 AlliedModders LLC. All rights reserved.
* ============================================================================= * =============================================================================
* *
* This file is part of the SourceMod/SourcePawn SDK. * This file is part of the SourceMod/SourcePawn SDK.
@ -147,7 +147,7 @@ native PushArrayString(Handle:array, const String:value[]);
* @return Index of the new entry. * @return Index of the new entry.
* @error Invalid Handle or out of memory. * @error Invalid Handle or out of memory.
*/ */
native PushArrayArray(Handle:array, const values[], size=-1); native PushArrayArray(Handle:array, const any:values[], size=-1);
/** /**
* Retrieves a cell value from an array. * Retrieves a cell value from an array.
@ -185,7 +185,7 @@ native GetArrayString(Handle:array, index, String:buffer[], maxlength);
* @return Number of cells copied. * @return Number of cells copied.
* @error Invalid Handle or invalid index. * @error Invalid Handle or invalid index.
*/ */
native GetArrayArray(Handle:array, index, buffer[], size=-1); native GetArrayArray(Handle:array, index, any:buffer[], size=-1);
/** /**
* Sets a cell value in an array. * Sets a cell value in an array.
@ -223,7 +223,7 @@ native SetArrayString(Handle:array, index, const String:buffer[]);
* @return Number of cells copied. * @return Number of cells copied.
* @error Invalid Handle or invalid index. * @error Invalid Handle or invalid index.
*/ */
native SetArrayArray(Handle:array, index, const values[], size=-1); native SetArrayArray(Handle:array, index, const any:values[], size=-1);
/** /**
* Shifts an array up. All array contents after and including the given * Shifts an array up. All array contents after and including the given

View File

@ -1,7 +1,7 @@
/** /**
* vim: set ts=4 : * vim: set ts=4 :
* ============================================================================= * =============================================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2008 AlliedModders LLC. All rights reserved.
* ============================================================================= * =============================================================================
* *
* This file is part of the SourceMod/SourcePawn SDK. * This file is part of the SourceMod/SourcePawn SDK.
@ -72,7 +72,7 @@ native bool:SetTrieValue(Handle:trie, const String:key[], any:value, bool:replac
* @return True on success, false on failure. * @return True on success, false on failure.
* @error Invalid Handle. * @error Invalid Handle.
*/ */
native bool:SetTrieArray(Handle:trie, const String:key[], const array[], num_items, bool:replace=true); native bool:SetTrieArray(Handle:trie, const String:key[], const any:array[], num_items, bool:replace=true);
/** /**
* Sets a string value in a Trie, either inserting a new entry or replacing an old one. * Sets a string value in a Trie, either inserting a new entry or replacing an old one.
@ -111,7 +111,7 @@ native bool:GetTrieValue(Handle:trie, const String:key[], &any:value);
* as a value or string (not an array). * as a value or string (not an array).
* @error Invalid Handle. * @error Invalid Handle.
*/ */
native bool:GetTrieArray(Handle:trie, const String:key[], array[], max_size, &size=0); native bool:GetTrieArray(Handle:trie, const String:key[], any:array[], max_size, &size=0);
/** /**
* Retrieves a string in a Trie. * Retrieves a string in a Trie.