예제 #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
파일: record.c 프로젝트: amurtet/pd-cyclone
static void record_free(t_record *x)
{
    arsic_free((t_arsic *)x);
    if (x->x_clock) clock_free(x->x_clock);
}