RingRacers/libs/ACSVM/include/ACSVM/CallFunc.hpp
Sally Coolatta 26477941ed Attempt using ACSVM to implement
It's having trouble linking the dll on Windows currently
2022-10-03 01:23:58 -04:00

31 lines
796 B
C++

//-----------------------------------------------------------------------------
//
// Copyright (C) 2015 David Hill
//
// See COPYING for license information.
//
//-----------------------------------------------------------------------------
//
// Internal CallFunc functions.
//
//-----------------------------------------------------------------------------
#ifndef ACSVM__CallFunc_H__
#define ACSVM__CallFunc_H__
#include "Types.hpp"
//----------------------------------------------------------------------------|
// Extern Functions |
//
namespace ACSVM
{
#define ACSVM_FuncList(name) \
bool (CallFunc_Func_##name)(Thread *thread, Word const *argv, Word argc);
#include "CodeList.hpp"
}
#endif//ACSVM__CallFunc_H__