1 /* 2 linevent.h: 3 4 Copyright (C) 2001 matt ingalls 5 6 This file is part of Csound. 7 8 The Csound Library is free software; you can redistribute it 9 and/or modify it under the terms of the GNU Lesser General Public 10 License as published by the Free Software Foundation; either 11 version 2.1 of the License, or (at your option) any later version. 12 13 Csound is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 GNU Lesser General Public License for more details. 17 18 You should have received a copy of the GNU Lesser General Public 19 License along with Csound; if not, write to the Free Software 20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 21 02110-1301 USA 22 */ 23 24 #ifndef CSOUND_LINEVENT_H 25 #define CSOUND_LINEVENT_H 26 27 /*****************************************************************/ 28 /* linevent */ 29 /* Dec 2001 by matt ingalls */ 30 /*****************************************************************/ 31 typedef struct { 32 OPDS h; 33 MYFLT *args[VARGMAX]; 34 int argno; 35 int flag; 36 } LINEVENT; 37 38 39 typedef struct { 40 OPDS h; 41 MYFLT *inst; 42 MYFLT *args[VARGMAX]; 43 int argno; 44 } LINEVENT2; 45 46 #endif /* CSOUND_LINEVENT_H */ 47