1 /*
2     dumpf.h:
3 
4     Copyright (C) 1991 Barry Vercoe, John ffitch
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                                                         /*  DUMPF.H  */
25 typedef struct {
26         OPDS   h;
27         MYFLT  *ksig, *ifilcod, *iformat, *iprd;
28         int    format;
29         int32   countdown, timcount;
30         FILE   *f;
31         FDCH   fdch;
32 } KDUMP;
33 
34 typedef struct {
35         OPDS   h;
36         MYFLT  *ksig1, *ksig2, *ifilcod, *iformat, *iprd;
37         int    format;
38         int32   countdown, timcount;
39         FILE   *f;
40         FDCH   fdch;
41 } KDUMP2;
42 
43 typedef struct {
44         OPDS   h;
45         MYFLT  *ksig1, *ksig2, *ksig3, *ifilcod, *iformat, *iprd;
46         int    format;
47         int32   countdown, timcount;
48         FILE   *f;
49         FDCH   fdch;
50 } KDUMP3;
51 
52 typedef struct {
53         OPDS   h;
54         MYFLT  *ksig1, *ksig2, *ksig3, *ksig4, *ifilcod, *iformat, *iprd;
55         int    format;
56         int32   countdown, timcount;
57         FILE   *f;
58         FDCH   fdch;
59 } KDUMP4;
60 
61 typedef struct {
62         OPDS   h;
63         MYFLT  *k1, *ifilcod, *iformat, *iprd;
64         /* MYFLT  *interp; */
65         int    format;
66         int32   countdown, timcount;
67         MYFLT  k[4];
68         FILE   *f;
69         FDCH   fdch;
70 } KREAD;
71 
72 typedef struct {
73         OPDS   h;
74         MYFLT  *k1, *k2, *ifilcod, *iformat, *iprd;
75         /* MYFLT  *interp; */
76         int    format;
77         int32   countdown, timcount;
78         MYFLT  k[4];
79         FILE   *f;
80         FDCH   fdch;
81 } KREAD2;
82 
83 typedef struct {
84         OPDS   h;
85         MYFLT  *k1, *k2, *k3, *ifilcod, *iformat, *iprd;
86         /* MYFLT  *interp; */
87         int    format;
88         int32   countdown, timcount;
89         MYFLT  k[4];
90         FILE   *f;
91         FDCH   fdch;
92 } KREAD3;
93 
94 typedef struct {
95         OPDS   h;
96         MYFLT  *k1, *k2, *k3, *k4, *ifilcod, *iformat, *iprd;
97         /* MYFLT  *interp; */
98         int    format;
99         int32  countdown, timcount;
100         MYFLT  k[4];
101         FILE   *f;
102         FDCH   fdch;
103 } KREAD4;
104 
105 typedef struct {
106         OPDS   h;
107         STRINGDAT  *str;
108         MYFLT *ifilcod, *iprd;
109         int32  countdown, timcount;
110         char   *lasts;
111         FILE   *f;
112         FDCH   fdch;
113 } KREADS;
114 
115