#[unsafe(no_mangle)]pub extern "C" fn ket_process_get_exp_value(
process: &Process,
index: usize,
available: &mut bool,
result: &mut f64,
) -> i32Expand description
Retrieves the expected value from the Process instance.
§Arguments
process- [in] A reference to theProcessinstance.index- [in] The index of the expected value to query.available- [out] A mutable pointer to aboolindicating if the result is available.result- [out] A mutable pointer to af64storing the expected value.
§Returns
An integer representing the error code. 0 indicates success.