abl_link_set_tempo method

void abl_link_set_tempo(
  1. abl_link_session_state session_state,
  2. double bpm,
  3. int at_time
)

! @brief: Set the timeline tempo to the given bpm value, taking effect at the given time.

Implementation

void abl_link_set_tempo(
  abl_link_session_state session_state,
  double bpm,
  int at_time,
) {
  return _abl_link_set_tempo(
    session_state,
    bpm,
    at_time,
  );
}