~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to Opcodes/stdopcod.c

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "stdopcod.h"
23
23
 
24
 
PUBLIC int csoundModuleCreate(CSOUND *csound)
 
24
/* PUBLIC int csoundModuleCreate(CSOUND *csound)
25
25
{
26
26
    (void) csound;
27
27
    return 0;
28
28
}
 
29
*/
29
30
 
30
 
PUBLIC int csoundModuleInit(CSOUND *csound)
 
31
int stdopc_ModuleInit(CSOUND *csound)
31
32
{
32
33
    STDOPCOD_GLOBALS  *p;
33
34
    int               err = 0;
91
92
    return (err ? CSOUND_ERROR : CSOUND_SUCCESS);
92
93
}
93
94
 
 
95
/*
94
96
PUBLIC int csoundModuleInfo(void)
95
97
{
96
98
    return ((CS_APIVERSION << 16) + (CS_APISUBVER << 8) + (int) sizeof(MYFLT));
97
99
}
 
100
*/
98
101