2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-03-26 20:39:08 +03:00
2006-05-10 14:38:11 +00:00

14 lines
336 B
C++

#include "fakemeta_amxx.h"
static cell AMX_NATIVE_CALL copy_infokey_buffer(AMX *amx, cell *params)
{
char *infobuffer = reinterpret_cast<char *>(params[1]);
return MF_SetAmxString(amx, params[2], infobuffer, params[3]);
}
AMX_NATIVE_INFO misc_natives[] = {
{ "copy_infokey_buffer", copy_infokey_buffer },
{NULL, NULL},
};