Add more natives! Add support for reading Objects. Fix more boogs and update include

This commit is contained in:
Dr!fter
2013-08-26 22:19:05 -04:00
parent a916cdb66b
commit e06b52c1ec
4 changed files with 366 additions and 7 deletions
+17
View File
@@ -15,6 +15,23 @@ enum MRESReturn
MRES_Supercede // skip real function; use my return value
};
enum ObjectValueType
{
ObjectValueType_Int = 0,
ObjectValueType_Bool,
ObjectValueType_Ehandle,
ObjectValueType_Float,
ObjectValueType_CBaseEntityPtr,
ObjectValueType_IntPtr,
ObjectValueType_BoolPtr,
ObjectValueType_EhandlePtr,
ObjectValueType_FloatPtr,
ObjectValueType_Vector,
ObjectValueType_VectorPtr,
ObjectValueType_CharPtr,
ObjectValueType_String
};
enum HookParamType
{
HookParamType_Unknown,