Fixed function prototypes.
[cantaveria.git] / seq.h
blobcb95dd4efeb5fe4660b343acbf3a1b75547e9d68
1 /*
2 Cantaveria - action adventure platform game
3 Copyright (C) 2009 2010 Evan Rinehart
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to
18 The Free Software Foundation, Inc.
19 51 Franklin Street, Fifth Floor
20 Boston, MA 02110-1301, USA
22 evanrinehart@gmail.com
29 /* use these from audio thread */
30 event* seq_advance(int samples, int* used);
31 event* seq_get_immediate();
33 /***/
34 void seq_instant(int type, int chan, int val1, int val2);
35 void seq_clear(void);
36 void seq_load(list* events);
37 void seq_seek(list* target);
38 list* seq_tell(void);
39 void seq_enable(void);
40 void seq_disable(void);
41 void seq_append(event* e);