#include "wrapper.h" // Wrapper for jack_client_open which uses varargs aka "The horror from below" // Someone should tell those chaps that cool kids don't use vararg jack_client_t *jack_client_open_with_default_server(const char *client_name, jack_options_t options, jack_status_t *status) { jack_client_open(client_name, options, status); } // Let's just hope no one ever needs more than one server... jack_client_t *jack_client_open_with_server_name(const char *client_name, jack_options_t options, jack_status_t *status, const char* server) { jack_client_open(client_name, options, status, server); }