/* * Carla JACK API for external applications * Copyright (C) 2016-2022 Filipe Coelho * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * For a full copy of the GNU General Public License see the doc/GPL.txt file. */ #include "libjack.hpp" CARLA_BACKEND_USE_NAMESPACE // -------------------------------------------------------------------------------------------------------------------- CARLA_PLUGIN_EXPORT int jack_client_name_size(void) { carla_debug("%s()", __FUNCTION__); return STR_MAX; } CARLA_PLUGIN_EXPORT char* jack_get_client_name(jack_client_t* client) { carla_debug("%s(%p)", __FUNCTION__, client); JackClientState* const jclient = (JackClientState*)client; CARLA_SAFE_ASSERT_RETURN(jclient != nullptr, nullptr); return jclient->name; } // -------------------------------------------------------------------------------------------------------------------- CARLA_PLUGIN_EXPORT int jack_internal_client_new(const char*, const char*, const char*) { return ENOSYS; } CARLA_PLUGIN_EXPORT void jack_internal_client_close(const char*) { } // -------------------------------------------------------------------------------------------------------------------- CARLA_PLUGIN_EXPORT int jack_get_client_pid(const char*) { return 0; } // --------------------------------------------------------------------------------------------------------------------