Merge pull request #225 from powerlord/votecallback-fix

Add new-style API compatibility for VoteHandler.
This commit is contained in:
David Anderson 2014-12-16 13:29:09 -08:00
commit 58194c5d99

View File

@ -810,14 +810,28 @@ stock bool VoteMenuToAll(Handle menu, int time, int flags=0)
* @param item_info Array of items, sorted by count. Use VOTEINFO_ITEM
* defines.
*/
typedef VoteHandler = function void (
typeset VoteHandler
{
// old style
function void(
Menu menu,
int num_votes,
int num_clients,
const int client_info[][2],
int num_items,
const int item_info[][2]
);
);
// new style
function void(
Menu menu,
int num_votes,
int num_clients,
const int[][] client_info,
int num_items,
const int[][] item_info
);
};
/**
* Sets an advanced vote handling callback. If this callback is set,