2014-05-03 17:33:51 +02:00
|
|
|
#ifndef _fichier_h
|
|
|
|
#define _fichier_h
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2014-05-21 21:12:56 +02:00
|
|
|
void creerProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
|
2014-05-03 17:33:51 +02:00
|
|
|
|
2014-05-21 21:12:56 +02:00
|
|
|
void chargerProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
|
2014-05-03 17:33:51 +02:00
|
|
|
|
2014-05-21 21:12:56 +02:00
|
|
|
void sauverProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
|
2014-05-03 17:33:51 +02:00
|
|
|
|
2014-05-21 21:12:56 +02:00
|
|
|
void copierProjet(char chemin[], Sample* smpl[], Instrument* inst[], Motif* liste, Motif* melodie[]);
|
2014-05-03 17:33:51 +02:00
|
|
|
|
|
|
|
#endif
|