12 lines
No EOL
300 B
C++
12 lines
No EOL
300 B
C++
#include <pslang/interpreter/foreign.hpp>
|
|
#include <pslang/interpreter/error.hpp>
|
|
|
|
namespace pslang::interpreter
|
|
{
|
|
|
|
value exec_foreign(context & context, void * pointer, types::type const & return_type, std::vector<value> args)
|
|
{
|
|
throw std::runtime_error("exec_foreign is not implemented");
|
|
}
|
|
|
|
} |