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

« back to all changes in this revision

Viewing changes to frontends/beats/beats.h

  • 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:
 
1
/*
 
2
    csbeats.h:
 
3
 
 
4
    Copyright (C) 2012 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., 59 Temple Place, Suite 330, Boston, MA
 
21
    02111-1307 USA
 
22
*/
 
23
 
 
24
 
 
25
    typedef struct {
 
26
      int n;                    /* self referencial */
 
27
      int largest;
 
28
      double *p;
 
29
    } INSTR;
 
30
 
 
31
extern INSTR *instr;
 
32
extern int maxinstr;
 
33
extern int yyline;
 
34
extern int last_note;
 
35
extern int last_integer;
 
36
extern double last_duration;
 
37
extern double bpm;
 
38
extern int permeasure;
 
39
extern int yydebug;
 
40
extern int yyparse(void);
 
41
extern void print_instr_structure(void);