Enable multiple functions exposed to the host

This commit is contained in:
Brendan Hansknecht 2024-10-06 18:30:09 -07:00
parent c61b7bf2a6
commit a9d1327dd1
No known key found for this signature in database
GPG key ID: A199D0660F95F948
7 changed files with 63 additions and 13 deletions

View file

@ -213,7 +213,7 @@ pub struct ParsedModule<'a> {
#[derive(Debug)]
pub enum EntryPoint<'a> {
Executable {
exposed_to_host: &'a [(Symbol, ProcLayout<'a>)],
exposed_to_host: &'a [(&'a str, Symbol, ProcLayout<'a>)],
platform_path: PathBuf,
},
Test,