mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-22 07:10:06 +02:00
55 lines
1.6 KiB
C
55 lines
1.6 KiB
C
/*
|
|
Copyright 2011-2012 David Robillard <http://drobilla.net>
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include "./suil_internal.h"
|
|
|
|
SUIL_API
|
|
SuilHost*
|
|
suil_host_new(SuilPortWriteFunc write_func,
|
|
SuilPortIndexFunc index_func,
|
|
SuilPortSubscribeFunc subscribe_func,
|
|
SuilPortUnsubscribeFunc unsubscribe_func)
|
|
{
|
|
SuilHost* host = (SuilHost*)malloc(sizeof(struct SuilHostImpl));
|
|
host->write_func = write_func;
|
|
host->index_func = index_func;
|
|
host->subscribe_func = subscribe_func;
|
|
host->unsubscribe_func = unsubscribe_func;
|
|
host->touch_func = NULL;
|
|
host->gtk_lib = NULL;
|
|
return host;
|
|
}
|
|
|
|
SUIL_API
|
|
void
|
|
suil_host_set_touch_func(SuilHost* host,
|
|
SuilTouchFunc touch_func)
|
|
{
|
|
host->touch_func = touch_func;
|
|
}
|
|
|
|
SUIL_API
|
|
void
|
|
suil_host_free(SuilHost* host)
|
|
{
|
|
if (host) {
|
|
if (host->gtk_lib) {
|
|
dlclose(host->gtk_lib);
|
|
}
|
|
free(host);
|
|
}
|
|
}
|