13 lines
180 B
C++
13 lines
180 B
C++
#pragma once
|
|
|
|
#include <pslang/jit/blob.hpp>
|
|
|
|
#include <vector>
|
|
#include <cstdint>
|
|
|
|
namespace pslang::jit
|
|
{
|
|
|
|
blob make_host_executable(std::vector<std::uint8_t> const & code);
|
|
|
|
}
|