mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
13 lines
356 B
C
13 lines
356 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "angelscript/angelscript.h"
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace satdump
|
||
|
|
{
|
||
|
|
namespace script
|
||
|
|
{
|
||
|
|
bool buildModuleFromFile(asIScriptEngine *engine, std::string module_id, std::string script_file);
|
||
|
|
bool runVoidMainFromModule(asIScriptEngine *engine, std::string module_id);
|
||
|
|
} // namespace script
|
||
|
|
} // namespace satdump
|