From e517361e4e9d8eae572a89a761a4def3ad8870eb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 15 Nov 2024 09:27:02 -0500 Subject: Rename UI port event function and move it to the appropriate header This isn't a "global" internal function like the others in jalv_internal.h, but rather the prototype of a function that must be implemented by frontends. --- src/jalv_qt.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/jalv_qt.cpp') diff --git a/src/jalv_qt.cpp b/src/jalv_qt.cpp index ef29858..61cf3fb 100644 --- a/src/jalv_qt.cpp +++ b/src/jalv_qt.cpp @@ -612,11 +612,11 @@ jalv_frontend_ui_type(void) } void -jalv_ui_port_event(Jalv* jalv, - uint32_t port_index, - uint32_t buffer_size, - uint32_t protocol, - const void* buffer) +jalv_frontend_port_event(Jalv* jalv, + uint32_t port_index, + uint32_t buffer_size, + uint32_t protocol, + const void* buffer) { if (jalv->ui_instance) { suil_instance_port_event( -- cgit v1.2.1