bus.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef CSOUND_BUS_H
00029 #define CSOUND_BUS_H
00030
00031 #include "pstream.h"
00032
00033 #ifdef __cplusplus
00034 extern "C" {
00035 #endif
00036
00037 typedef struct {
00038 OPDS h;
00039 PVSDAT *r;
00040 MYFLT *a,*N, *overlap, *winsize, *wintype, *format;
00041 PVSDAT init;
00042 } FCHAN;
00043
00044 typedef struct {
00045 OPDS h;
00046 MYFLT *ans;
00047 MYFLT *keyDown;
00048 int evtbuf;
00049 } KSENSE;
00050
00051 typedef struct {
00052 OPDS h;
00053 MYFLT *arg;
00054 MYFLT *iname;
00055 MYFLT *fp;
00056 } CHNGET;
00057
00058 typedef struct {
00059 OPDS h;
00060 MYFLT *iname;
00061 MYFLT *fp;
00062 } CHNCLEAR;
00063
00064 typedef struct {
00065 OPDS h;
00066 MYFLT *iname;
00067 MYFLT *imode;
00068 const char *name;
00069 MYFLT *fp;
00070 int type;
00071 } CHNSEND;
00072
00073 typedef struct {
00074 OPDS h;
00075 MYFLT *iname;
00076 MYFLT *imode;
00077 MYFLT *itype;
00078 MYFLT *idflt;
00079 MYFLT *imin;
00080 MYFLT *imax;
00081 } CHN_OPCODE_K;
00082
00083 typedef struct {
00084 OPDS h;
00085 MYFLT *iname;
00086 MYFLT *imode;
00087 } CHN_OPCODE;
00088
00089 typedef struct {
00090 OPDS h;
00091 MYFLT *arg;
00092 MYFLT *iname;
00093 MYFLT *imode;
00094 MYFLT *itype;
00095 MYFLT *idflt;
00096 MYFLT *imin;
00097 MYFLT *imax;
00098 } CHNEXPORT_OPCODE;
00099
00100 typedef struct {
00101 OPDS h;
00102 MYFLT *itype;
00103 MYFLT *imode;
00104 MYFLT *ictltype;
00105 MYFLT *idflt;
00106 MYFLT *imin;
00107 MYFLT *imax;
00108 MYFLT *iname;
00109 } CHNPARAMS_OPCODE;
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164 #ifndef CSOUND_BUS_C
00165
00166 int chano_opcode_perf_k(CSOUND *, void *);
00167 int chano_opcode_perf_a(CSOUND *, void *);
00168 int chani_opcode_perf_k(CSOUND *, void *);
00169 int chani_opcode_perf_a(CSOUND *, void *);
00170 int pvsin_init(CSOUND *, void *);
00171 int pvsin_perf(CSOUND *, void *);
00172 int pvsout_perf(CSOUND *, void *);
00173
00174 int sensekey_perf(CSOUND *, void *);
00175
00176 int notinit_opcode_stub(CSOUND *, void *);
00177 int chnget_opcode_init_i(CSOUND *, void *);
00178 int chnget_opcode_init_k(CSOUND *, void *);
00179 int chnget_opcode_init_a(CSOUND *, void *);
00180 int chnget_opcode_init_S(CSOUND *, void *);
00181 int chnset_opcode_init_i(CSOUND *, void *);
00182 int chnset_opcode_init_k(CSOUND *, void *);
00183 int chnset_opcode_init_a(CSOUND *, void *);
00184 int chnset_opcode_init_S(CSOUND *, void *);
00185 int chnmix_opcode_init(CSOUND *, void *);
00186 int chnclear_opcode_init(CSOUND *, void *);
00187 int chn_k_opcode_init(CSOUND *, void *);
00188 int chn_a_opcode_init(CSOUND *, void *);
00189 int chn_S_opcode_init(CSOUND *, void *);
00190 int chnexport_opcode_init(CSOUND *, void *);
00191 int chnparams_opcode_init(CSOUND *, void *);
00192 int chnrecv_opcode_init(CSOUND *, void *);
00193 int chnsend_opcode_init(CSOUND *, void *);
00194
00195 #endif
00196
00197 #ifdef __cplusplus
00198 }
00199 #endif
00200
00201 #endif
00202