[Motifs] Amélioration de la syntaxe
This commit is contained in:
parent
e302163177
commit
fbf7f8b78b
|
@ -15,3 +15,5 @@ documentation/latex/refman.ind
|
|||
documentation/latex/refman.log
|
||||
documentation/latex/refman.pdf
|
||||
documentation/latex/refman.toc
|
||||
sources/motifs/.motifs.c.swp
|
||||
sources/motifs/.motifs.h.swp
|
|
@ -1,7 +1,5 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "instruments.h"
|
||||
#include "effets.h"
|
||||
|
||||
#define NBRPORT 4
|
||||
#define NBRMOTIF 16
|
||||
|
@ -9,12 +7,12 @@
|
|||
typedef struct _note{
|
||||
int note;
|
||||
int octave;
|
||||
int intrument;
|
||||
int instrument;
|
||||
int volume;
|
||||
int effet;
|
||||
} Note;
|
||||
|
||||
typedef Note* Portee;
|
||||
typedef Note** Portee;
|
||||
|
||||
typedef Portee* Motif;
|
||||
|
||||
|
|
Loading…
Reference in New Issue