Yes Rory, here is a test /* csound_test.c */ #include int main(int argc, char **argv) { void *csound = csoundCreate(0); int result = csoundCompile(csound, argc, argv); /* f1 0 8192 10 5 4 3 2 1 */ MYFLT pFields[] = {1,0,8192,10,5,4,3,2,1}; csoundScoreEvent(csound, 'f', pFields, 9); if(!result) { while(csoundPerformKsmps(csound) == 0){} csoundCleanup(csound); } csoundDestroy(csound); return result; } ;; test.csd sr = 44100 ksmps = 10 nchnls = 1 instr 1 aout oscil 15000, 1000, 1 out aout endin f1 0 8192 10 1 i1 0 1 cc -lcsound -o csound_test csound_test.c ./csound_test -g test.csd ... .''- . ' ' - ' ' - '_ ._ . '-----._ '-._ _____________________________'''------._________________________________________ '--......__ '-._ - '-......_ '. . - - _ - - . - _ '__. ... tito On Thu, Nov 24, 2011 at 07:56:28PM +0000, Rory Walsh wrote: > I did some digging and now I have another question. I'm showing my > inner Csound workings ignorance here, but do any of the table API > functions work before performKsmps() is first called? As in straight > after compile() is called? > > On 24 November 2011 18:11, Rory Walsh wrote: > > D'oh! He can send a score statement using csoundScoreEvent(). But can > > the score statement be sent before performKsmps()? > > > > > > > > On 24 November 2011 17:54, Rory Walsh wrote: > >> A student of mine was asking if there is an API function that can be > >> used to dynamically create function tables, a csoundTableCreate() per > >> say. Am I right in saying this is not possible? Well, at least within > >> the current framework of the API. > >> > >> Rory. > >> > > > > ------------------------------------------------------------------------------ > All the data continuously generated in your IT infrastructure > contains a definitive record of customers, application performance, > security threats, fraudulent activity, and more. Splunk takes this > data and makes sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-novd2d > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-novd2d _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net