blob: 4331a79ece0ff805b53287f3bb3befa248485b27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef SLANG_VM_INST_IMPL_H
#define SLANG_VM_INST_IMPL_H
#include "slang-vm-bytecode.h"
namespace Slang
{
slang::VMExtFunction mapInstToFunction(
VMInstHeader* instHeader,
VMModuleView* module,
Dictionary<String, slang::VMExtFunction>& extInstHandlers);
} // namespace Slang
#endif
|