Added includes and some other mysterious changes

This commit is contained in:
Steve Dudenhoeffer
2004-08-22 03:58:31 +00:00
parent 51caf26399
commit 3a78aff06d
5 changed files with 474 additions and 9 deletions

35
dlls/fakemeta/fakemeta.inc Executable file
View File

@ -0,0 +1,35 @@
/* FakeMeta functions
* This file is provided as-is with no warrenties.
*/
#if defined _fakemeta_included
#endinput
#endif
#define _fakemeta_included
#include <fakemeta_const>
/* Returns entvar data from an entity Use the pev_* enum to specify which form of data you want returned. */
native pev(_index,_value,{Float,_}:...)
/* Sets entvar data for an entity. Use the pev_* enum */
native set_pev(_index,_value,{Float,_}:...)
/* 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:_}...);