amxmodx/plugins/include/fakemeta.inc
Johnny Bergström 1d770fd400 Removed pev
2005-03-25 22:05:41 +00:00

38 lines
1.4 KiB
PHP
Executable File

/* FakeMeta functions
* This file is provided as-is with no warrenties.
*/
#if defined _fakemeta_included
#endinput
#endif
#define _fakemeta_included
#include <fakemeta_const>
/* Returns an integer from private data. _linuxdiff is added into the _Offset if it's used on a linux server. */
native get_pdata_int(_index,_Offset,_linuxdiff=5);
/* Sets an integer from private data. _linuxdiff is added into the _Offset if it's used on a linux server. */
native set_pdata_int(_index,_Offset,_Value,_linuxdiff=5);
/* Returns a float from private data. _linuxdiff is added into the _Offset if it's used on a linux server. */
native Float:get_pdata_float(_index,_Offset,_linuxdiff=5);
/* Sets a float from private data. _linuxdiff is added into the _Offset if it's used on a linux server. */
native set_pdata_float(_index,_Offset,Float:_Value,_linuxdiff=5);
/* Registers a forward */
native register_forward(_forwardType,_function[],_post=0);
/* Returns data for metamod */
native forward_return(type,{Float,Sql,Result,_}:...);
native engfunc(type,{Float,Sql,Result,_}:...);
native dllfunc(type,{Float,Sql,Result,_}:...);
//only use this with functions that pass a Trace
// get: zero extra params - return int, one extra param = byref float or vector
// set: use anything
native get_tr(TraceResult:tr_member, {Float,_}:...);
native set_tr(TraceResult:tr_member, {Float,_}:...);