/* TiMidity++ -- MIDI to WAVE converter and player Copyright (C) 1999-2002 Masanao Izumo Copyright (C) 1995 Tuukka Toivonen 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 (at your option) 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. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef ___MIDITRACE_H_ #define ___MIDITRACE_H_ #include "mblock.h" #include "controls.h" typedef struct _MidiTrace { int offset; /* sample offset */ int flush_flag; /* True while in trace_flush() */ void (* trace_loop_hook)(void); /* Hook function for extension */ /* Delayed event list (The member is only access in miditrace.c) */ struct _MidiTraceList *head; struct _MidiTraceList *tail; /* Memory buffer */ struct _MidiTraceList *free_list; MBlockList pool; } MidiTrace; extern void init_midi_trace(void); extern void push_midi_trace0(void (*f)(void)); extern void push_midi_trace1(void (*f)(int), int arg1); extern void push_midi_trace2(void (*f)(int, int), int arg1, int arg2); extern void push_midi_trace_ce(void (*f)(CtlEvent *), CtlEvent *ce); extern void push_midi_time_vp(int32 start, void (*f)(void *), void *vp); extern int32 trace_loop(void); extern void trace_flush(void); extern void trace_offset(int offset); extern void trace_nodelay(int nodelay); extern void set_trace_loop_hook(void (* f)(void)); extern int32 current_trace_samples(void); extern int32 trace_wait_samples(void); extern MidiTrace midi_trace; #endif /* ___MIDITRACE_H_ */