pub unsafe extern "C" fn libpd_finish_message(
    recv: *const c_char,
    msg: *const c_char
) -> c_int
Expand description

finish current message and send as a typed message to a destination receiver note: typed message handling currently only supports up to 4 elements internally, additional elements may be ignored returns 0 on success or -1 if receiver name is non-existent ex: send [; pd dsp 1( on the next tick with: libpd_start_message(1); libpd_add_float(1); libpd_finish_message(“pd”, “dsp”);