Files
revive/crates/llvm-context/src/polkavm/context/function/runtime/mod.rs
T
2024-06-05 13:29:07 +02:00

15 lines
352 B
Rust

//! The front-end runtime functions.
pub mod deploy_code;
pub mod entry;
pub mod runtime_code;
/// The main entry function name.
pub const FUNCTION_ENTRY: &str = "__entry";
/// The deploy code function name.
pub const FUNCTION_DEPLOY_CODE: &str = "__deploy";
/// The runtime code function name.
pub const FUNCTION_RUNTIME_CODE: &str = "__runtime";