示例#1
0
static void peek_free(t_peek *x)
{
    if (x->x_clock) clock_free(x->x_clock);
    arsic_free((t_arsic *)x);
}
示例#2
0
文件: play.c 项目: EQ4/Pd-for-LibPd
static void play_free(t_play *x)
{
    arsic_free((t_arsic *)x);
}
示例#3
0
文件: wave.c 项目: EQ4/Pd-for-LibPd
static void wave_free(t_wave *x)
{
    arsic_free((t_arsic *)x);
}
示例#4
0
static void poke_free(t_poke *x)
{
    if (x->x_clock) clock_free(x->x_clock);
    arsic_free((t_arsic *)x);
}
示例#5
0
static void record_free(t_record *x)
{
    arsic_free((t_arsic *)x);
    if (x->x_clock) clock_free(x->x_clock);
}