Add tools/ and manual/, move sources to src/
[dpadhero2.git] / src / sound / sequencer.h
blob7ccd4c606a27b1f870dce3daf4721c99fb4ac16c
2 ; Copyright (C) 2010 Kent Hansen.
4 ; This program is free software; you can redistribute it and/or modify
5 ; it under the terms of the GNU General Public License as published by
6 ; the Free Software Foundation; either version 3 of the License, or
7 ; (at your option) any later version.
9 ; This program is distributed in the hope that it will be useful,
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ; GNU General Public License for more details.
14 ; You should have received a copy of the GNU General Public License
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
18 .ifndef SEQUENCER_H
19 .define SEQUENCER_H
21 ; Exported symbols.
22 .extrn sequencer_tick:proc
23 .extrn sequencer_load:proc
24 .extrn fetch_pattern_byte:proc
25 .extrn set_track_speed:proc
26 .extrn set_all_tracks_speed:proc
27 .ifdef PATTERN_ROW_CALLBACK_SUPPORT
28 .extrn set_pattern_row_callback:proc
29 .endif
30 .ifdef ORDER_SEEKING_SUPPORT
31 .extrn sequencer_seek_order_relative:proc
32 .endif
34 .endif