Csound and CsoundAC API 5.13
|
#include "csoundCore.h"
Defines | |
#define | FLINKAGE |
#define | LINKAGE |
#define | Str(x) (x) |
Functions | |
PUBLIC NGFENS * | csound_fgen_init (CSOUND *) |
PUBLIC long | csound_opcode_init (CSOUND *, OENTRY **) |
PUBLIC int | csoundModuleCreate (CSOUND *) |
PUBLIC int | csoundModuleDestroy (CSOUND *) |
PUBLIC const char * | csoundModuleErrorCodeToString (int) |
PUBLIC int | csoundModuleInfo (void) |
PUBLIC int | csoundModuleInit (CSOUND *) |
#define FLINKAGE |
PUBLIC NGFENS *csound_fgen_init(CSOUND *csound) \ { (void) csound; return localfgens; } \ PUBLIC int csoundModuleInfo(void) \ { return ((CS_APIVERSION << 16) + (CS_APISUBVER << 8) + (int) sizeof(MYFLT)); }
#define LINKAGE |
PUBLIC long csound_opcode_init(CSOUND *csound, OENTRY **ep) \ { (void) csound; *ep = localops; return (long) sizeof(localops); } \ PUBLIC int csoundModuleInfo(void) \ { return ((CS_APIVERSION << 16) + (CS_APISUBVER << 8) + (int) sizeof(MYFLT)); }
#define Str | ( | x | ) | (x) |
PUBLIC int csoundModuleCreate | ( | CSOUND * | ) |
PUBLIC int csoundModuleDestroy | ( | CSOUND * | ) |
PUBLIC const char* csoundModuleErrorCodeToString | ( | int | ) |
PUBLIC int csoundModuleInfo | ( | void | ) |
PUBLIC int csoundModuleInit | ( | CSOUND * | ) |