Beispiel #1
0
cell Call_Cbase_Void(AMX *amx, cell *params)
{
	SETUP(0);
#if defined(_WIN32)
	void *ret=reinterpret_cast<void *(__fastcall *)(void *, int)>(__func)(pv, 0);
#elif defined(__linux__) || defined(__APPLE__)
	void *ret=reinterpret_cast<void *(*)(void *)>(__func)(pv);
#endif
	return PrivateToIndex(ret);
}
Beispiel #2
0
void CBaseEntityHandler::convertToAmx(cell& value, long standardReturn, ConvertMode convertMode)
{
	value = PrivateToIndex((const void *)standardReturn);
}
Beispiel #3
0
int Rage::private_to_index(const void *pdata)
{
	return PrivateToIndex(pdata);
}