From 85192ccf31c666dad9a8483828cd964dc9c7e2c6 Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Mon, 16 Mar 2026 14:38:59 -0700 Subject: [PATCH] Re-export host functions from hyperlight host package Signed-off-by: James Sturtevant --- src/hyperlight_host/src/func/mod.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/hyperlight_host/src/func/mod.rs b/src/hyperlight_host/src/func/mod.rs index c627b0de2..426897e9f 100644 --- a/src/hyperlight_host/src/func/mod.rs +++ b/src/hyperlight_host/src/func/mod.rs @@ -29,12 +29,18 @@ pub(crate) mod host_functions; /// Re-export for `HostFunction` trait pub use host_functions::{HostFunction, Registerable}; +/// Re-export for `ParameterType` enum +pub use hyperlight_common::flatbuffer_wrappers::function_types::ParameterType; /// Re-export for `ParameterValue` enum pub use hyperlight_common::flatbuffer_wrappers::function_types::ParameterValue; /// Re-export for `ReturnType` enum pub use hyperlight_common::flatbuffer_wrappers::function_types::ReturnType; /// Re-export for `ReturnValue` enum pub use hyperlight_common::flatbuffer_wrappers::function_types::ReturnValue; +/// Re-export for `HostFunctionDefinition` +pub use hyperlight_common::flatbuffer_wrappers::host_function_definition::HostFunctionDefinition; +/// Re-export for `HostFunctionDetails` +pub use hyperlight_common::flatbuffer_wrappers::host_function_details::HostFunctionDetails; pub use hyperlight_common::func::{ ParameterTuple, ResultType, SupportedParameterType, SupportedReturnType, };