Type Definition solana_program_runtime::native_loader::LoaderEntrypoint
source · [−]pub type LoaderEntrypoint = unsafe extern "C" fn(program_id: &Pubkey, instruction_data: &[u8], invoke_context: &InvokeContext<'_>) -> Result<(), InstructionError>;
Expand description
Prototype of a native loader entry point
program_id: Program ID of the currently executing program keyed_accounts: Accounts passed as part of the instruction instruction_data: Instruction data invoke_context: Invocation context